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