Question #7029

write c++ program using loop to repeat word enter by user as number of its character?

Expert's answer

write c++ program using loop to repeat word enter by user as number of its character?

#include <iostream>
#include <string>
using namespace std;

int i=0;
char word[100];

void main(){
cout<<"Enter a word: ";
cin>>word;
for (i=1;i<=strlen(word);i++) cout<<word<<"\n";
}

LATEST TUTORIALS
APPROVED BY CLIENTS