#include int main() { int x = 42; int* pointer = &x; /* print x through the pointer */ printf("x = %d\n", *pointer); /* change x through pointer */ *pointer = 100; /* see that x has changed */ printf("x = %d\n", x); return 0; }