125) Consider the following program fragment
if (a > b)
if (b > c)
s1 ;
else s2;
s2 will be executed if
Answer is:
a> b and b <= c
Related C Programming MCQ with Answers
Answer is:
Both can always be replaced by a nested it-then-else clause and enhances logical clarity
Answer is: