Wap in cpp to display message 10 times using for loop

#include<iostream.h>
#include<conio.h>
void main()
{

int i;
clrscr();
for(i=0,i<=10;i++)
{
cout<<”this is cpp programme”<<endl;
}
getch():
}

No comments:

Post a Comment

If You Like The Post Or want to Add Something More
then feel free to comment