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