Answer to Question #7030 in C++ for noora

Question #7030
write c++ program using loop to reverse the order of entered word by the user
1
Expert's answer
2012-03-06T11:39:44-0500
write c++ program using loop to reverse the order of entered word by the user

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

int i=0;
char word[100];

void main(){
cout<<"Enter a word: ";
cin>>word;
for (i=strlen(word)-1;i>=0;i--) cout<<word[i];
cout<<"\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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS