fork download
  1. #include <stdio.h>
  2. void fun1 (){
  3. int x = 7;
  4. printf("%d\n",x++);
  5. }
  6. int main ()
  7. {
  8. fun1();
  9. fun1();
  10. fun1();
  11. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
7
7
7