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. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
10