Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
How many times, will the following loop be executed?
char cl = 'a';
while (cl >='a' && cl <='z')
{
cl++;
}
1
0
2
26
3
25
4
1
How many times, will the following loop be executed?
char cl = 'a';
while (cl >='a' && cl <='z')
{
cl++;
}