write a program in c++with for loop to enter 10 no. and print the max no.
Answers
Answered by
0
- Explanation:
#include<iostream.h>
#include<conio.h>
void main()
{
int i;
clrscr ( );
for ( i=1;i<=10;i++)
{
cout<<"\n i="<<i;
}
getch ( );
}
Similar questions