I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
#include <iostream> #include <string.h> #define MAX_SIZE 100 //Maximum size of the string using namespace std; int main() { int i, j, lenght; char string[MAX_SIZE]; char reverse[MAX_SIZE]; cout<<"Enter a string: "; cin>>string; lenght = strlen(string); j = 0; for(i=lenght-1; i>=0; i--) { reverse[j] = string[i]; j++; } reverse[j] = '\0'; cout<<reverse; return 0; }
Result:
Enter a string: techstudy
ydutshcet
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
Result:
Enter a string: techstudy
ydutshcet
need an explanation for this answer? contact us directly to get an explanation for this answer