fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class A
  5. {
  6. public:
  7. static int b;
  8. };
  9.  
  10. int A::b = 10;
  11.  
  12. int main() {
  13. cout << A::b << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
10