Which statement is used to skip the execution of the current iteration and start the next iteration in a loop?
Answer Details
The continue statement skips the rest of the current loop iteration and continues with the next iteration. It is often used to skip certain values in a loop based on a specific condition.