fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Row {
  5. public:
  6. static bool b;
  7. };
  8. bool Row::b;
  9.  
  10. bool v;
  11.  
  12. bool get()
  13. {
  14. static bool z;
  15. return z;
  16. }
  17.  
  18. int main(int argc, char *argv[])
  19. {
  20. cout << Row::b << endl;
  21. cout << v << endl;
  22. cout << get() << endl;
  23. }
  24.  
  25.  
  26.  
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
0
0
0