A
Q. What is the output of C Program?
Code:
int main()
{
int a=32;
do
{
printf("%d ", a);
a++;
if(a > 35)
break;
}while(1);
return 0;
}
{
int a=32;
do
{
printf("%d ", a);
a++;
if(a > 35)
break;
}while(1);
return 0;
}
- Correct Answer - Option(C)
- Views: 17
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.