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 821 views
2 answers 292 views
1 answer 137 views
137 views asked Dec 16, 2022 by avibootz
1 answer 273 views
1 answer 150 views
150 views asked Aug 23, 2024 by avibootz
1 answer 143 views
1 answer 115 views
...