fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class blah {
  5. static int foo;
  6. };
  7.  
  8. int blah::foo;
  9.  
  10. int main() {
  11. // your code goes here
  12. return 0;
  13. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty