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