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