to print the name 10 times
Answers
Answered by
1
Answer
C++ program to print any name 10 times
#include <iostream>
using namespace std;
int main()
{
char a;
while(a<=10)
{
cout<<"Reyansh"<<endl;
a++;
}
}
Note: Output is in above attachment.
Attachments:
Similar questions
Hindi,
1 month ago
English,
3 months ago
Math,
3 months ago
Computer Science,
10 months ago
Computer Science,
10 months ago