How to compare two strings ignoring case in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>

// int strcasecmp(const char *s1, const char *s2);
// int strncasecmp(const char *s1, const char *s2, size_t n);

/*
return:
0 if both the strings are equal
< 1 if s1 is less than s2.
> 1 if s1 is greater than s2
*/

int main() {
    char s1[] = "C++ PROGRAMMING";
    char s2[] = "c++ programming";
      
    if (strcasecmp(s1, s2) == 0) {
        printf("s1 == s2");
    } else {
        printf("s1 != s2");
    }
    
    return 0;
}

 
   
/*
run:
   
s1 == s2
   
*/

 



answered Aug 23, 2024 by avibootz
edited Aug 23, 2024 by avibootz

Related questions

1 answer 170 views
3 answers 213 views
1 answer 132 views
1 answer 117 views
2 answers 143 views
1 answer 115 views
1 answer 108 views
...