Thursday 5 July 2012

Lecture: 111


                                                Lecture 111
// Loop do while
#include <iostream>
#include <conio.h>
using namespace std;
 main ()
{  
      int i;
      cout<<"Odd number: ";     
      i=1;
      do{
          cout<<i<<" ";     
          i+=2;
        }while(i<10); 
  getch();
  return 0;
}

Code view in dev compiler:

Compile the program Ctrl+F9

      Run program Ctrl+F10