โ Back to Functions/Methods
Question 300
Function: Reverse a String
Function: Reverse a String
Write a functionreverse(char *s)that reverses the characters of the stringsin place using two indices (or pointers) that move toward the middle and swap. Reverse"hello"inmainand 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.