#include int main() { int x = 42; int* pointer = &x; printf("x = %d, pointer = %p\n", x, pointer); return 0; }