The do...while loop : Do While « Statement « C Tutorial

Home
C Tutorial
1.Language
2.Data Type
3.String
4.printf scanf
5.Operator
6.Statement
7.Array
8.Function
9.Structure
10.Pointer
11.Memory
12.Preprocessor
13.File
14.Data Structure
15.Search Sort
16.Wide Character String
17.assert.h
18.ctype.h
19.math.h
20.setjmp.h
21.signal.h
22.stdio.h
23.stdlib.h
24.string.h
25.time.h
26.wctype.h
C / ANSI-C
C++
C++ Tutorial
Visual C++ .NET
C Tutorial » Statement » Do While 
6.8.1.The do...while loop
  1. The do...while loop checks the conditional expression only after the repetition part is executed.
  2. The do...while loop is used when you want to execute the loop body at least once.

The general form of the do...while loop is

do {
       repetition part;
    while (expr);
#include <stdio.h>

main(){
    int i,n = 5;
    i = 0;

    do{
        printf("the numbers are %d \n",i);
        i = i +1;
    }whilei<n;
}
the numbers are 0
     the numbers are 1
     the numbers are 2
     the numbers are 3
     the numbers are 4
6.8.Do While
6.8.1.The do...while loop
6.8.2.Reversing the digits: do while loop
6.8.3.Read number in a range
6.8.4.Nest for loop inside do while loop
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.