Which is the correct output of the following program
void main()
{
unsigned int i = 65536;
while(i++)
printf("%d",++i);
}
what is the correct output of the program
void main()
{
unsigned int i=65535;
while(i++)
printf("%d",++i);
}
what is the correct output
void main()
{
float a =0.8;
if(a > 0.8)
printf(" hello");
else
printf("World");
}
what is the correct output
void main()
{
int x,y,z;
x=y=z=1;
z=++x||++y&&++z;
printf(" x = %d y = %d z = %d",x,y,z);
}
void main()
{
int a, num=20;
k = (num>5) ? ( num<=10) ? 100 : 200 ):500);
printf("%d",num);
}
void main()
{
int i =10,j=20;
if(i=5) && if(i=10)
printf(" \n Hello");
}
void main()
{
int a =0,b=1,c=3;
*((a) ? &b:&a)=a?b:c;
printf(" %d %d %d",a,b,c);
}
void main()
{
int i = 0;
i++;
if( i<=5)
{
printf("Hi");
exit();
main();
}
void main()
{
int x =1,y=1;
for(;y;printf(%d %d\n",x,y);
}