fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Foo{
  5. int _bar;
  6. public:
  7. void printBar(){ cout << _bar << endl; }
  8. };
  9. int main() {
  10. Foo().printBar();
  11. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
0