belongs to collection: C language string programs
C program to reverse a string enter by user.
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h> #include <string.h> #define MAX_SIZE 100 //Maximum size of the string int main() { int i, j, lenght; char string[MAX_SIZE]; char reverse[MAX_SIZE]; printf("Enter a string: "); gets(string); lenght = strlen(string); j = 0; for(i=lenght-1; i>=0; i--) { reverse[j] = string[i]; j++; } reverse[j] = '\0'; printf("Reverse string : %s", reverse); return 0; }
Result:
Enter a string: www.techstudy.org
Reverse string : gro.ydutshcet.www
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.
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Result:
Enter a string: www.techstudy.org
Reverse string : gro.ydutshcet.www
need an explanation for this answer? contact us directly to get an explanation for this answer