fork download
  1. void foo(int i)
  2. {
  3. i = 100;
  4. }
  5.  
  6. int main()
  7. {
  8. int value = 0;
  9. foo(value);
  10. printf("%d\n", value);
  11. }
Runtime error #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
0