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