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