Quote Originally Posted by WaterSerpentM View Post
wow

Code:
strrev(strcpy(chara2[i],chara1[i]));
actually works lol
Yep, strcpy returns a pointer to the destination string, so it's the same as calling strcpy and strrev separately with the same destination (and there's no performance benefit to doing it one way or the other, maybe unless you have all compiler optimizations disabled or you're using a really old or bad compiler).