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