what is the output of the following code?
# include stdio.h
int p[]={1,2,3};
main()
{
int *r;
r=p;
r+=3;
printf("%d",*r);
}


Posted on by