Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,936 questions

51,873 answers

573 users

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 160 views
3 answers 195 views
1 answer 115 views
1 answer 104 views
2 answers 122 views
1 answer 102 views
1 answer 92 views
...