Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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();
}
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 ofStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started