hey guys, i need help about this problem....
i am sorting a number of names, but if i inputted a lower case and a upper case value, it will not be equal.
1 2 3 4 5 6
example:
Enter number of names; 3
Enter names:
albert
Albert
Nel
I don't think there's a case-insensitive version of strcmp(). You'll have to either convert all the strings to the same case before starting, or write your own version of strcmp().