A
Q. What is the output of C Program?
Code:
int main()
{
int k;
for(;;)
{
printf("TESTING
");
break;
}
return 0;
}
{
int k;
for(;;)
{
printf("TESTING
");
break;
}
return 0;
}
- Correct Answer - Option(B)
- Views: 6
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.