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. 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();
}
6.36 (Print a String Backward) Write a recursive function stringReverse that takes a character array as an argument. ing and return when the terminating null character of the string is encountered prints it back to front and returns nothing. The function should stop process
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
