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