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();

}

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

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

Medical Image Databases

Authors: Stephen T.C. Wong

1st Edition

1461375398, 978-1461375395

More Books

Students also viewed these Databases questions