Header Ads

Hii,I am Anand Nayak.This blogger is make for specially basic programs of some language.

While Loop

Lets How to use while loop with Example:-
#include<iostream.h>
#include<conio.h>
 void main()
 {
    int i
       while(i<=5)
         {
             cout<<i<<emdl;
               i++;
           }
   getch();
  }

No comments