I tried to write code using strrev(). I included string.h But still I'm getting " undefined reference to `strrev'" error.

I found that strrev doesn't have man page at all. Why ?

Linux doesn't support strrev()?

link|improve this question

I still can't remember the last time I needed to reverse a string. – jørgensen Dec 16 '11 at 12:51
feedback

migrated from superuser.com Dec 16 '11 at 12:37

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 5 down vote accepted

Correct. Use one of the alternative implementations available.

link|improve this answer
Thanks Ignacio Vazquez-Abrams :) – Dinesh Dec 16 '11 at 6:26
Be aware that the linked implementation will not work if you use a multi-byte character encoding (such as Big5, or any Unicode encoding, in particular UTF-8). But I guess that goes for most strrev implementations... – sleske Dec 16 '11 at 9:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.