📅  最后修改于: 2020-11-05 03:27:35             🧑  作者: Mango
编程语言提供了各种控制结构,允许更复杂的执行路径。
循环语句使我们可以多次执行一个语句或一组语句,以下是大多数编程语言中循环语句的一般形式-
C编程语言提供了以下类型的循环来处理循环需求。
S.NO. | Loop & Description |
---|---|
1 |
while loops will loop continuously, and infinitely, until the expression inside the parenthesis, () becomes false. Something must change the tested variable, or the while loop will never exit. |
2 |
The do…while loop is similar to the while loop. In the while loop, the loop-continuation condition is tested at the beginning of the loop before performed the body of the loop. |
3 |
A for loop executes statements a predetermined number of times. The control expression for the loop is initialized, tested and manipulated entirely within the for loop parentheses. |
4 |
C language allows you to use one loop inside another loop. The following example illustrates the concept. |
5 |
It is the loop having no terminating condition, so the loop becomes infinite. |