Question: Write an assembly language procedure named equalsIgnoreCase, which receives two strings and their sizes, and returns true if the two strings contain the same characters
Write an assembly language procedure named “equalsIgnoreCase”, which receives two strings and their sizes,
and returns true if the two strings contain the same characters irrespective of the case. For example, for strings
{“aBc”} and {“Abc”} the function returns true, but for {“aBc”} and {“aB”}, or {“aBc”} and {“Xbz”}, the
function returns false. Write a generic procedure that must handle all checks and conditions.
Step by Step Solution
3.42 Rating (158 Votes )
There are 3 Steps involved in it
Actually equalignorecase is not working directly in assemb... View full answer
Get step-by-step solutions from verified subject matter experts
