fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. int i = 0;
  5. while (s[i] != '\0' && t[i] != '\0') {
  6.  
  7. char a = s[i];
  8. char b = t[i];
  9.  
  10. if(a >= 'A' && a <= 'Z') a = a + ('a' - 'A');
  11. if(b >= 'A' && b <= 'Z') b = b + ('a' - 'A');
  12.  
  13. if(a != b) return 0;
  14.  
  15. i++;
  16. }
  17.  
  18.  
  19. if(s[i] == '\0' && t[i] == '\0')
  20. return 1;
  21.  
  22. return 0;
  23. }
  24. int main(){
  25. int ans;
  26. char s[100];
  27. char t[100];
  28. scanf("%s %s",s,t);
  29. printf("%s = %s -> ",s,t);
  30. ans = fuzzyStrcmp(s,t);
  31. printf("%d\n",ans);
  32. return 0;
  33. }
  34.  
Success #stdin #stdout 0s 5272KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1