HEY im pretty lost i need to make a program where user has in enter a name and after it has been entered it has to repeat the name 100 times can someone please help me im fairly new and i cant get it to work =/. this is what i have so far...
#include <iostream>
#include <string>
using namespace std;
int main ()
{
char name[50];
cout<<"Insert Name"<<'\n';
cin.getline (name, 50);
return 0;
}