#include int main(void) { int *a, b; b = 25; a = &b; printf("%d %d\n", *a, b); *a += 5; printf("%d %d\n", *a, b); return 0; }