The ________ statement is used to skip the rest of the loop's body and continue with the next iteration.
- break
- continue
- exit
- return
In C and many other programming languages, the 'continue' statement is used to skip the current iteration and move to the next iteration within a loop. It allows you to bypass the remaining code in the loop body.
Loading...
Related Quiz
- A ________ pointer is a pointer that still points to a memory location that has been deallocated.
- In C, the function ________ is used to allocate memory for an array of elements and initialize them to zero.
- When would it be beneficial to use a function pointer instead of a direct function call?
- In C programming, what is a common use case for having an array of structures?
- In C, what happens if you attempt to open a file for reading using fopen() but the file does not exist?