A
Q. How many times i value is checked in the following C program?
Code:
#include <stdio.h>
int main()
{
int i = 0;
while (i < 3)
i++;
printf("In while loop
");
}
int main()
{
int i = 0;
while (i < 3)
i++;
printf("In while loop
");
}
- Correct Answer - Option(C)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.