#include int main(){ int x = 10; int *p = &x; printf("The address of x: %p\n", &x); printf("The address of x: %p\n", p); printf("The value of x: %d\n", x); printf("The value of x: %d\n", *p); return 0; }