Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#2 (Print a String Backward) Write a recursive function stringReverse that takes a character array as an argument, prints it back to front and returns

#2 (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 processing and return when the terminating null character of the string is encountered. Using Ubuntu would be best.

1] Do not change function names etc that has been given to you.

[2] Do not add additional libraries (i.e. for strings, and sorting), you need to do this yourself.

[3] Problems 1,2,3, must be done recursively. Thus, there shouldn't be any for/while loops. [4] To clarify the purpose of low and high in recursiveMinimum read the below:

#include #include #include #include

// Project Includes #include

#define SIZE_PROBLEM1 10 #define SIZE_PROBLEM2 30 #define SIZE_PROBLEM3 10 #define MAXRANGE_PROBLEM3 1000

#define SIZE_PROBLEM4 100

// // Functions

//////////////////////////////////////////////////////////////////////////////// // // Function : main // Description : The main function for the CMPSC assignment #1 // // Inputs : argc - the number of command line parameters // argv - the parameters // Outputs : 0 if successful test, -1 if failure

int main(int argc, char *argv[]) {

/////// Problem 2 Start ////////////////////////////////////// printf(" -------------------------------------------------------"); printf(" Problem 2 Start ");

// initialize string strArray char strArray[SIZE_PROBLEM2] = "Print this string backward.";

// display original string for (? ? ? ? ) { ? ? ? ? ); }

puts(""); stringReverse(strArray); // reverse the string puts(""); printf(" Problem 2 End");

/////// Problem 2 End //////////////////////////////////////

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

The Database Management Systems

Authors: Patricia Ward, George A Dafoulas

1st Edition

1844804526, 978-1844804528

More Books

Students also viewed these Databases questions

Question

=+ For what reasons can and do unions go on strike?

Answered: 1 week ago