fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int money=40;
  5. printf("Hello World\n");
  6. printf("%d\n",money);
  7. money=30;
  8. printf("%d\n",money);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5264KB
stdin
Standard input is empty
stdout
Hello World
40
30