Help for this page

Select Code to Download


  1. or download this
    while(1) {
      ...
    }
    
  2. or download this
    {
      ...
      redo
    }
    
  3. or download this
    while() {
      ...
    }
    
  4. or download this
    do {
      ...
    } while 1;
    
  5. or download this
    do {
      ...
    } until 0;