fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void fun()
  5. {
  6. int a = 0;
  7.  
  8. cout<< ++a;
  9. }
  10.  
  11. int main()
  12. {
  13. fun();
  14. }
Success #stdin #stdout 0.01s 5520KB
stdin
Standard input is empty
stdout
1