Q. What is the output?
Code:void main()
{
int a=10,b=20;
char x=1,y=0;
if(a,b,x,y)
{
printf(“EXAM”);
}
}
β
Correct Answer: (D)
Nothing is printed
void main()
{
int a=10,b=20;
char x=1,y=0;
if(a,b,x,y)
{
printf(“EXAM”);
}
}
You must be Logged in to update hint/solution