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