Below is C program to String Compare Ignore Case - STRICMP.
Program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | /* STRING COMPARE IGNORE CASE - STRICMP */ #include<stdio.h> int main() { char str1[100], str2[100]; int i, d=0, flag=0; char x,y; printf ( "Please enter first string: " ); // gets(str1); // fgets is a better option over gets to read multiword string . fgets (str1, 100, stdin); // Following can be added for extra precaution for '\n' character // if(str1[length(str1)-1] == '\n') str1[strlen(str1)-1]=NULL; printf ( "Please enter second string: " ); // gets(str2); fgets (str2, 100, stdin); // if(str2[length(str2)-1] == '\n') str2[strlen(str2)-1]=NULL; for (i=0;str1[i]!=NULL&&str2[i]!=NULL;i++) { x=str1[i]; y=str2[i]; if (x>= 'a' &&x<= 'z' ) x-=32; if (y>= 'a' &&y<= 'z' ) y-=32; if (x!=y) { break ; flag=1; } } if (flag=0) { x=str1[i]; y=str2[i]; if (x>= 'a' &&x<= 'z' ) x-=32; if (y>= 'a' &&y<= 'z' ) y-=32; } d=x-y; if (d==0) printf ( "Strings are equal" ); else printf ( "Strings are not equal" ); return 0; } |
No comments:
Post a Comment