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