Q. What is the output of C Program.?
Code:
int main()
{
int a=5;
while(a==5)
{
printf("RABBIT");
break;
}
return 0;
}
β
Correct Answer: (B)
RABBIT