[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/c/language/while [Back]  [Original]

while loop cppreference.com
cppreference.com

while loop

cppreference.com

<metanoindex/>

.
:
Executes a loop.
Google.
. .
, , .
:
Used where code needs to be executed several times while some condition is present.
Google.
. .

while ( cond_expression ) loop_statement

cond_expression , bool. loop_statement, , cond_expression true.
:
cond_expression shall be an expression, whose result is convertible to bool. It is evaluated before each execution of loop_statement, which is only executed if the cond_expression evaluates to true.
Google.
. .

while


Web Proxy Viewer  |  New URL  |  Original Page