Reverse a string in C programming

Hello, Student today we Learn about Reverse order Programming in C. Here only one Program for Reverse the String and Number Both in Reverse a string in C programming.

Reverse a string in c using for loop

#include <stdio.h>
#include <stdlib.h>
#include<string.h>

int main(void)

{
char *word = “anyWord”;
char* userWord = (char *)malloc(sizeof(word)+1);
int letters = 0;

printf(“Input your word: “);
scanf(“%s”, userWord);
for(int i = 0; userWord[i] != ‘\0’; i++)

{
letters++;
}

char *reverseWord = (char *)malloc(sizeof(word)+1);

// char reverseWord[letters];

for(int j = 0; j <= letters; j++)

{
reverseWord[letters – j-1] = userWord[j];
}

 

printf(“\nHere, we got:- %s \t counting letters give:- %d\t reversing gave:- %s \t”, userWord, letters, reverseWord);
}

//Enter any word or Later and found Output in reverse order

Reverse of a number in c

 

Reverse a string in C programming
Reverse a string in C programming

Reverse a string in C program

Reverse a string in C programming
Reverse a string in C programming

 

END

C program to draw a square using graphics (clickHere)

Note:- Maybe sometime above code doesn’t get user-friendly output, in codeblock ‘or’ any other EDITOR, All of C & C++ program tested in DOS compiler Turbo C.

Reverse word in a string in C

Also Read

Types of functions in C    Read Here

I hope you will understand better if you study at M.U, in the exam of M.U you know how important this “Reverse a string in C programming

. So please don’t forget to give your valuable feedback. Go in the comment section and Give us some feedback about it. Reverse a string in C programming  or My website.

Our team check your every Comment per day Because your one feedback helps us in growing Thesmolt

I request you if you have any doubt or question regarding our site, then please don’t hesitate. We always waiting for your Suggestion.

Note:- If you want to Download This article’s in PDF form, then simply go (Top or Bottom of) Right corner and click on the PRINT icon, and it’s saved as a PDF of Reverse a string in C programming

For further questions, you can contact us Via mail [email protected]  otherwise, Our Help Page and Contact us Page, which is included below. I hope I’ll able to say all the possible ways to reach us. Or Download My Android Application Below Download Button.

thesmolt App

Leave a Reply

x