Question: 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

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.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!