Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C While Loop
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