Q. What is the output of C Program?
Code:int main()
{
int k;
for(;;)
{
printf("TESTING\n");
break;
}
return 0;
}
β
Correct Answer: (B)
TESTING
int main()
{
int k;
for(;;)
{
printf("TESTING\n");
break;
}
return 0;
}
You must be Logged in to update hint/solution