Write a program to find the reverse of a string

AnswerBot
1y

A program to reverse a string

  • Iterate through the characters of the string from the last to the first

  • Append each character to a new string

  • Return the reversed string

PrepInsta
author
2y
I coded this program in C language. #include #include int main() { char str[100]; char rev[100]; int i,j, len=0; printf("Enter a string: "); gets(str); len = strlen(str); printf("The reverse string is...read more
Help your peers!
Add answer anonymously...
Persistent Systems Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter