// Stores and prints an integer's address #include int main(void) { int n = 50; int *p = &n; printf("%p\n", p); }