Question: Write a function that does the following: Takes in a single char pointer (i.e., char*) as input. Has no return value. Makes a copy of
Write a function that does the following:
Takes in a single char pointer (i.e., char*) as input.
Has no return value.
Makes a copy of the input string to a new heap memory location.
Flips the string (i.e., Hello olleH) in-place in this new memory location.
Copy the flipped string back to the original memory location pointed to by the input char pointer.
Make sure to include the function name and its input parameters in your code.
Language is in C
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
