Sail E0 Webinar
Question

What will be the output of the following program :
#include<stdio.h>
main()
{
int a=5u,*b,**c,***d,****e;
b=&a;
c=&b;
d=&c;
e=&d;
printf("%u %u %u %u",*b-5,**c-11,***d-6,65535+****e);
}
Options:
A .  Compile Error
B .  0 65530 65535 4
C .  65530 65535 65539
D .  0 -6 -1 -2
Answer: Option B




Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers