Question: 2) Write the code for the function in the prototype: int StrReverse (char *array1); The function reverses the contents of the string, and returns the
2) Write the code for the function in the prototype: int StrReverse (char *array1); The function reverses the contents of the string, and returns the length of the array. You may use NOT use strlen() or any other string library functions to implement StrReverse(), and it must work for any string length. DO NOT write main(), do not print anything. If StrReverse() is called with this argument: char a[] = "0123456789"; // the string. After StrReverse() returns, the string should contain: a = "9876543210" and the returned value should be 10. 5 points
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
