C-18-Q060mediumsingle_mcq
When the condition with which continue is associated is true, the compiler:
When the condition with which continue is associated is true, the compiler:
- aIgnores
continue - bExecutes
continue(skipping the rest of the loop body that iteration) - cStops the entire program
- dSwitches to a new function
ব্যাখ্যা
When the controlling condition is true, continue executes and skips the rest of the loop body for that iteration, jumping back to the loop's next cycle. The statements after continue in that pass are bypassed.