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