fork(1) download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. for(int i=0; s[i]==t[i] || s[i]==t[i]+32 || s[i]==t[i]-32; i++){
  5. if(s[i]=='\0') return 1;
  6. }
  7. return 0;
  8. }
  9.  
  10.  
  11. int main(){
  12. int ans;
  13. char s[100];
  14. char t[100];
  15. scanf("%s %s",s,t);
  16. printf("%s = %s -> ",s,t);
  17. ans = fuzzyStrcmp(s,t);
  18. printf("%d\n",ans);
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5280KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1