Q. What is the output of C Program?
Code:
int main()
{
int k;
for(;;)
{
printf("TESTING\n");
break;
}
return 0;
}
β
Correct Answer: (B)
TESTING