fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Test{
  5. static int X;
  6.  
  7. int a(){
  8. return X;
  9. }
  10.  
  11. };
  12.  
  13. int main() {
  14. // your code goes here
  15. return 0;
  16. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty