#include int main(void){ int b; int *c; b=10; c=&b; *c=11; printf("%d\n",b); }