Please help
language = C++
Write a function equalsIgnoreCase, which receives two char arrays and their sizes, andretums true if the two char arrays contain the same characters irrespective of the case. Forexample, for character arrays 'a' , 'B' , 'c'} and {'A', 'b', 'c'}, the function returns true, but for{'a', 'B', 'c') and (a. B'), or {'a'. 'B', 'c') and {'X', 'b', 'z'), the function returns false. Theprototype would be:bool equalsignorecase ( char[] ar1., int size1,char[] ar2 int size2);
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here