adspace
main()
{
int *j;
{
int i=10;
j=&i;
}
printf("%d",*j);
}
Answer Posted / bipin chandra sai.s
actually j has beeen assigned the addresss of i so the ans
will be the value present in the address location 10
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers