20. Which of the following
statements involves a fall
through?
if else
for loop
if else ladder
switch
Answers
Answered by
2
Answer:
The fallthrough keyword does not check the case conditions for the switch case that it causes execution to fall into. The fallthrough keyword simply causes code execution to move directly to the statements inside the next case (or default case) block, as in C's standard switch statement behavior
Similar questions