The code for C:
# include
int main ()
{
int i = 0;
while (i < 3)
i++;
printf (" In while loop\n");
}
How many times 'i' value is checked?
1
4
2
3
3
2
4
1
The code for C:
# include
int main ()
{
int i = 0;
while (i < 3)
i++;
printf (" In while loop\n");
}
How many times 'i' value is checked?