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;
}
β
Correct Answer: (C)
32 33 34 35