How to compare two strings using strcoll() in C

1 Answer

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

int main()
{
    char s1[64] = "c c++ java";
    char s2[64] = "c c++ jAvA";

    int result = strcoll(s1, s2);

    if (result == 0) {
        printf("s1 == s2");
    }else{
        printf("s1 != s2");
    }
}




/*
run:

s1 != s2

*/

 



answered Mar 21, 2022 by avibootz

Related questions

2 answers 291 views
1 answer 147 views
147 views asked Aug 23, 2024 by avibootz
1 answer 142 views
1 answer 183 views
2 answers 216 views
1 answer 149 views
149 views asked May 24, 2018 by avibootz
2 answers 820 views
...