Question: C not C++ Name this program two.c- This program reads two strings and uses a function to determine whether or not the two strings are

 C not C++ Name this program two.c- This program reads two

C not C++

Name this program two.c- This program reads two strings and uses a function to determine whether or not the two strings are the same if you ignore case (it does not matter if a given character in the string is upper-case or lower-case). The function ignoreCase returns a 1 if the strings are identical (ignoring case) and returns 0 otherwise. Write ignoreCase # include #include #include int ignoreCase (char *, char*) int main void) char input1 [1024], input2 [1024]; printf ("Enter a string: "); scanf("%s", input1); printf ("Enter another string: ") scanf("%s", input2); if ( , input2) ) ignoreCase (inputl printf("%s and %s are the same if you ignore case ", input1, input2); else printf("%s and %s are not the same, even ignoring case ", inputl, input2); return 0

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!