Question: C Programming. I have this code but it is not working. can someone please fix it and show me proof, thanks! #include void stringRecurse(char str[],

 C Programming. I have this code but it is not working.

C Programming.

I have this code but it is not working. can someone please fix it and show me proof, thanks!

#include

void stringRecurse(char str[], int i)

{

if (str[i] == '\0')

return;

stringRecurse(str, i + 1);

printf("%c", str[i]);

getchar();

}

int main(void)

{

char str[50];

printf("Enter your string: ");

scanf_s("%s", str);

printf("Reverse string: ");

stringRecurse(str, 0);

return 0;

getchar();

}

and return when it receives an array size zero. 6.36 (Print a String Backward) Write a recursive function stringReverse that takes a character array as an argument, prints it back to front and returns nothing. The function should stop process- ing and return when the terminating null character of the string is encountered. 6.37 (Find the Miniaum Vahue inan Array) Write a recursive function recursiveMinimum that of

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!