c-programming

C Program to reverse a string without using strrev()

Hello readers, in this post i am going to write a C program which has been asked in Interview from long time.

The question is  “Write a program to reverse a string without using strrev() in C”.

Well, I going to write a very simple C program to reverse a string for the above question.

C Program to reverse a string:

Output of the above program will be:

It’s a pretty easy program, so just read the comments in the above C program to understand what each line of the code is doing.

Enjoy the day!

 

 

Related Posts

3 thoughts on “C Program to reverse a string without using strrev()

  1. it’s technically wrong…..
    1. only applicable to one word of string
    2. if we consider only on single word then it will just print by using this loop….but element values of array will remains the same as it is initialized

Leave a Reply