#include int main() { int a = 1; int * p = &a; a += 1; *p += 1; printf("Value of a: %d\n", a); return 0; }