Answered step by step
Verified Expert Solution
Link Copied!

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[],

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

How does the informal channel complement the formal channel?

Answered: 1 week ago

Question

How can a network design tool help in network design?

Answered: 1 week ago