In a for loop, if the condition is missing, then infinite looping can not be avoided by a
Continue statement
goto statement
return statement
break statement
Answers
Answered by
5
HEY MATE
HERE IS YOUR ANSWER
return statement
HOPE IT HELPS
HAVE A NICE DAY AHEAD ...... ^ _ ^
HERE IS YOUR ANSWER
return statement
HOPE IT HELPS
HAVE A NICE DAY AHEAD ...... ^ _ ^
Answered by
0
Answer:
In a for loop, if the condition is missing, then infinite looping can not be avoided by a Continue statement.
Explanation:
Continue Statement inside a loop:
- When the keyword Continue is encountered inside any C loop, Control automatically passes to the beginning of the loop.
- In a for loop, if the condition is missing and a continue keyword is there inside the loop body, Control will pass to the beginning of the loop every time keyword Continue will encounter. The loop will become an infinite loop as there is no condition to stop the loop.
Similar questions