Wednesday, 5 October 2016

wap of printing first 10 natural no by loop

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

No comments:

Post a Comment