#include <stdio.h>
 
int main(void) {
    // your code goes here
    int x=47,*p;
    p=&x;
    printf("x的值是%d,x的地址是%p\n",x,&x);
    printf("指针p的值是%p\n",p);
    return 0;
}
