Reverse String in C (w/o STL or New Buffer)
I'm new to the language, and need help developing a C function which will reverse a string in place and meet the following criteria:
a) You cannot use the STL Library. B) You cannot allocate another buffer. (i.e. it must be reversed in place) C) You can only use ANSI C available functions.
Any help would be greatly appreciated.
|