Geography, asked by jenita26, 1 year ago

write the c++ program to display the name for 50 times

Answers

Answered by generalRd
4

Hi mate

Here is the answer

Write C++ Program to print your name 50 times

#include<iostream>

#include<conio.h>

using namespace std;

int main()

{

int i;

for(i=1;i<=50;++i)

cout<<"Your Name"<<"\n"; return 0;

}

Hope it helps

BE BRAINLY /////

Similar questions