CJCoding With Joseph

Function: Reverse a String

Write a function reverse(char *s) that reverses the characters of the string s in place using two indices (or pointers) that move toward the middle and swap. Reverse "hello" in main and print it:

olleh

Print the reversed string with %s.

Expected Output:

olleh
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.