#Include #Include Void Main (CLRSCR For (Int Num 0 Num 10 Num++) Cout "Testing The For Loop " Endl Getch )

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<iostream.

h>
#include<conio.h>
void main()
{
clrscr();
for (int num=0; num<=10; num++)
cout<<"testing the for loop "<<endl;
getch();
}

You might also like