fork download
  1. #include <stdio.h>
  2. int i=0;
  3.  
  4.  
  5.  
  6. void smth(int *a){
  7. (*a)=1;
  8.  
  9. }
  10.  
  11. int main(void) {
  12. // your code goes here
  13. printf("%d \n",i);
  14. smth(&i);
  15. printf("%d \n",i);
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
0 
1