Question: After you implement my_string_compare, this program should print: One Two Three #include #include using namespace std; int my_string_compare(char first[], char second[]); int main (){ char

After you implement my_string_compare, this program should print:

One Two Three

#include #include using namespace std; int my_string_compare(char first[], char second[]); int main (){ char one[100] = "hi"; char two[100] = "there"; if (my_string_compare(one, two) < 0){ cout << "One" << endl; } strcpy(one, "hi"); strcpy(two, "hi"); if (my_string_compare(one, two) == 0){ cout << "Two" << endl; } strcpy(one, "there"); strcpy(two, "hi"); if (my_string_compare(one, two) > 0){ cout << "Three" << endl; } return 0; } int my_string_compare(char first[], char second[]){ //Implement THIS function }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!