31

Predict the Output:
int main()
{
int i=40,j=14;
int *const p=&i;
p=&j;
printf("%d %d",*p,*p++);
return 0;
}

Related Posts