Tuesday 24 February 2015

ForLoop Demo in C++

#include<iostream.h>
#include<conio.h>
main()
{
int i;
clrscr();
for(i=0;i<10;i++)
{
cout<<"\nSSI Education";
}
getch();
}

No comments:

Post a Comment