Reverse String in C Last Updated : 05 Dec, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report In C, reversing a string means rearranging the characters such that the last character becomes the first, the second-to-last character becomes the second, and so on. In this article, we will learn how to reverse string in C.The most straightforward method to reverse string is by using two pointers to swap the corresponding characters starting from beginning and the end while moving the indexes towards each other till they meet each other. C #include <stdio.h> #include <string.h> void rev(char* s) { // Initialize l and r pointers int l = 0; int r = strlen(s) - 1; char t; // Swap characters till l and r meet while (l < r) { // Swap characters t = s[l]; s[l] = s[r]; s[r] = t; // Move pointers towards each other l++; r--; } } int main() { char s[100] = "abcde"; // Reversing s rev(s); printf("%s", s); return 0; } OutputedcbaApart from the simple method mentioned above, there are few more methods which we can use to reverse the string. Some of them are:Table of ContentUsing RecursionUsing Temporary ArrayUsing Library FunctionUsing RecursionThe two-pointer approach can also be implemented using recursion. Just pass the left and the right index pointer as argument to the recursive function and move them towards each other in each recursive call. C #include <stdio.h> #include <string.h> void rev(char* s, int l, int r) { // Base case is when l becomes greater than r if (l >= r) return; // Swap characters char t = s[l]; s[l] = s[r]; s[r] = t; // Recursively call the function with updated // index pointers rev(s, l + 1, r - 1); } int main() { char s[100] = "abcde"; rev(s, 0, strlen(s) - 1); printf("%s", s); return 0; } Outputolleh Using Temporary ArrayStore the reverse of string in a temporary array by traversing it from the back and copying each character to the other array. Then copy the reversed string from another array into the original string. C #include <stdio.h> #include <string.h> void rev(char* s) { char t[100]; int len = strlen(s); int i = 0; // Push all characters of string s onto t while (len > 0) t[i++] = s[len-- - 1]; t[i] = '\0'; // Copying all characters from t to // original string s strcpy(s, t); } int main() { char s[100] = "abcde"; // Reversing string s rev(s); printf("%s", s); return 0; } OutputedcbaUsing Library FunctionIn C, strrev() defined inside <string.h> can be used to reverse a string. This function provides the simplest method to reverse the string. C #include <stdio.h> #include <string.h> int main() { char s[] = "abcde"; // Reversing string using strrev() printf("%s", strrev(s)); return 0; } OutputedcbaNote: The strrev() function is not a part of the standard C language, so it might not be present in every compiler. Comment More infoAdvertise with us M maityamit_2003 Follow Improve Article Tags : C Programs C Language C-String C Basic Programs Similar Reads C Programming Language Tutorial C is a general-purpose mid-level programming language developed by Dennis M. Ritchie at Bell Laboratories in 1972. It was initially used for the development of UNIX operating system, but it later became popular for a wide range of applications. Today, C remains one of the top three most widely used 5 min read C Language Introduction C is a general-purpose procedural programming language initially developed by Dennis Ritchie in 1972 at Bell Laboratories of AT&T Labs. It was mainly created as a system programming language to write the UNIX operating system.Main features of CWhy Learn C?C is considered mother of all programmin 6 min read Dynamic Memory Allocation in C using malloc(), calloc(), free() and realloc() In C, a variable defined in a function is stored in the stack memory. The requirement of this memory is that it needs to know the size of the data to memory at compile time (before the program runs). Also, once defined, we can neither change the size nor completely delete the memory.To resolve this, 9 min read Data Types in C Each variable in C has an associated data type. It specifies the type of data that the variable can store like integer, character, floating, double, etc.Example:C++int number;The above statement declares a variable with name number that can store integer values.C is a statically type language where 5 min read C Arrays An array in C is a fixed-size collection of similar data items stored in contiguous memory locations. It can be used to store the collection of primitive data types such as int, char, float, etc., as well as derived and user-defined data types such as pointers, structures, etc. Creating an Array in 7 min read C Pointers A pointer is a variable that stores the memory address of another variable. Instead of holding a direct value, it holds the address where the value is stored in memory. It is the backbone of low-level memory manipulation in C. Accessing the pointer directly will just give us the address that is stor 9 min read C Programs To learn anything effectively, practicing and solving problems is essential. To help you master C programming, we have compiled over 100 C programming examples across various categories, including basic C programs, Fibonacci series, strings, arrays, base conversions, pattern printing, pointers, and 8 min read Operators in C In C language, operators are symbols that represent some kind of operations to be performed. They are the basic components of the C programming. In this article, we will learn about all the operators in C with examples.What is an Operator in C?A C operator can be defined as the symbol that helps us 11 min read Bitwise Operators in C In C, bitwise operators are used to perform operations directly on the binary representations of numbers. These operators work by manipulating individual bits (0s and 1s) in a number.The following 6 operators are bitwise operators (also known as bit operators as they work at the bit-level). They are 6 min read Basics of File Handling in C File handling in C is the process in which we create, open, read, write, and close operations on a file. C language provides different functions such as fopen(), fwrite(), fread(), fseek(), fprintf(), etc. to perform input, output, and many different C file operations in our program.Need of File Han 13 min read Like