The output of the program is...
#include stdio. h
int main ()
{
register int x = 5;
int *p;
p = &x;
x++;
printf(" %d", *p);
}


Posted on by