fork download
  1. // .h
  2. class Foo {
  3. public:
  4. static int variable;
  5. };
  6.  
  7. // .cpp
  8. int Foo::variable{123};
  9.  
  10. int main() {
  11. // your code goes here
  12. return 0;
  13. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty