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