I am trying to compare two specific characters in two strings,but I want to make the comparing without case sensitivity. How can I do this?
right now I am using a code like that:
if (str1[i]==str2[j]) printf("Equal");
but I want to do this without case sensivity.
Thank you in advance for taking your time to help!