Good Programming Practice in Dev C++
Monday, 2 July 2012
Lecture: 108
Lecture 108
Loop
//
Loop
do while
#include <iostream>
#include <conio.h>
using namespace std;
main ()
{
int i;
i=0;
do
{
cout<<i;
i++;
}while(i<10);
getch();
return 0;
}
Code view in dev compiler:
Compile the program Ctrl+F9
Run program Ctrl+F10
Newer Post
Older Post
Home