Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

while loop c++

//Executes a statement repeatedly, until the value of condition becomes false.
//The test takes place before each iteration
while(condition) {
  statement
}
Source by en.cppreference.com #
 
PREVIOUS NEXT
Tagged: #loop
ADD COMMENT
Topic
Name
4+7 =