Q. What is the output of C Program.?
Code:
int main()
{
while(true)
{
printf("RABBIT");
break;
}
return 0;
}
β
Correct Answer: (D)
Compiler error.