fork download
  1. #include<stdio.h>
  2. int x=5;
  3. void hoge(){
  4. int y=5;
  5. x++; y++;
  6. printf("%d%d ", x, y);
  7. }
  8.  
  9. int main(){
  10. hoge();
  11. hoge();
  12. hoge();
  13. return 0;
  14. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
66 76 86