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