How to use strcmp() function to compare two strings in C

1 Answer

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

int main()
{
    char s1[] = "abcd", s2[] = "aBcd", s3[] = "abcd";

    printf("strcmp(abcd, aBcd) = %d\n", strcmp(s1, s2));

    printf("strcmp(abcd, abcd) = %d\n", strcmp(s1, s3));
    
    printf("strcmp(aBcd, abcd) = %d\n", strcmp(s2, s1));

    return 0;
}
        
       
       
        
/*
run:
         
strcmp(abcd, aBcd) = 32
strcmp(abcd, abcd) = 0
strcmp(aBcd, abcd) = -32
    
*/

 



answered Jan 19, 2021 by avibootz

Related questions

2 answers 815 views
2 answers 286 views
1 answer 133 views
133 views asked Dec 16, 2022 by avibootz
1 answer 260 views
1 answer 144 views
144 views asked Aug 23, 2024 by avibootz
1 answer 139 views
1 answer 111 views
...