PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

1.7 If c is a variable initialized to 1, how many times will the following loop be executed?
while(( c > 0 && (c < 60))
{
c ++;
}

A) 61
B) 60
C) 59
D) 1


Leave a Reply