Answer to Question #7029 in C++ for muna
write c++ program using loop to repeat word enter by user as number of its character?
1
2012-03-06T11:39:04-0500
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";
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment