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