How to compare two strings in C

1 Answer

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

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

    if (strcmp(s1, s2, 32) == 0)
        printf("s1 == s2\n");
    else
        printf("s1 !=  s2\n");

    return 0;
}


/*
run:

s1 == s2

*/

 



answered May 24, 2018 by avibootz
edited Aug 23, 2024 by avibootz

Related questions

1 answer 147 views
147 views asked Aug 23, 2024 by avibootz
1 answer 142 views
1 answer 113 views
1 answer 183 views
2 answers 217 views
2 answers 820 views
2 answers 291 views
...