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