Q. What is the output of C Program.?
Code:
int main()
{
int a=25;
while(a <= 27)
{
printf("%d ", a);
a++;
}
return 0;
}
β
Correct Answer: (B)
25 26 27