A for loop that doesn’t specify the initialization, condition, and increment is known as a _______ loop. 

  • endless 
  • infinite 
  • forever 
  • boundless
In C++, when a for loop does not specify initialization, condition, and increment, it becomes an infinite loop. This means it will keep running indefinitely unless an external factor (like a break statement) interrupts its execution.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *