Header Ads

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

For Loop

Let's see How to Use For Loop with example:-
#include<iostream.h>
#include<conio.h>
  void main()
   {
      int i;
       clrscr();
        for(i=0;i<=5;i++)
          {
             cout<<"Anand Nayak"<<endl;
             }
   getch();
   }

No comments