99) If c is a variable initialised to 1, how many times will the following loop be executed?
while ((c > 0) && (c < 60))
{
loop body
c ++;
}
Answer is:
59
Related C Programming MCQ with Answers
Answer is:
Infinitely
Answer is:
Program trace
Answer is: