top of page

#include<stdio.h>
#include<string.h>
int strIsEqualIgnoreCase(char str[],char str2[]);
int main(void){
    printf("Enter a string\n");
    char str[50],str2[50];
    scanf("%s",str);
    
    printf("Enter a string\n");
    scanf("%s",str2);
    
    int sonuc=strIsEqualIgnoreCase(str,str2);
    printf("%d",sonuc);
    
    return 0;
}

int strIsEqualIgnoreCase(char str [],char str2[]){
    int i;
    if(strlen(str)==strlen(str2)){
        for(i=0;i<strlen(str);i++){
            if(str[i]-str2[i]==32||str[i]-str2[i]==-32){
                return 1;
            }
            else 
            return 0;
        }
    }
    else 
    return 0;

}

bottom of page