do while with while

THE do while WITH while:
The format of the do while with multiple while statement loop is follows.

SYNTAX :
do while(condition)
{
statement 1;
statement 2;
statement n;
}
while(condition);

Example :
#include<stdio.h>
#include<conio.h>
main()
{
int x=0;
do while(x<5)
{
x++;
printf("\t%d",x);
}
while(x<1);
}
OUTPUT :
12345

Explanation:
                        The speciality of using the second while loop in above program is to know that the programmer can take the second while loop.Though the above program can run with the single while statement.