Computer Science, asked by apr90, 3 months ago


to print the name 10 times​

Answers

Answered by MrTSR
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