home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH02 / A02211.TXT < prev    next >
Encoding:
Text File  |  1993-11-16  |  342 b   |  7 lines

  1. Like a for loop, a while loop checks the condition before
  2. executing the body of the loop.  The parentheses in the while
  3. statement contain only the condition expression.  All variables in
  4. that expression must initialized before the while statement, and
  5. at least one variable should change in value before the condition
  6. is checked again.
  7.