#includestdio.h
int main()
{
int*pc,c;
c=55;
pc=&c;
*pc=++c;
printf("%d",*pc);
printf("%d",c);
return 0;
}

Posted on by