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