fork download
  1. struct MyClass{
  2. static int MyMethod(){
  3. int a;
  4. a=1;
  5. return(a);
  6. }};
  7.  
  8. int main(){
  9. int a;
  10. a = MyClass::MyMethod();
  11. }
  12.  
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
Standard output is empty