How to write a function that compare two strings in C

1 Answer

0 votes
#include <stdio.h>
 
int scompare(char s1[], char s2[]);
 
int main(void)
{
    char a[10] = "abcd", b[20] = "abc";
 
    if (scompare(a, b) == 1)
        printf("Equale");
    else
        printf("Not Equale");
 
    return 0;
}
 
int scompare(char s1[], char s2[])
{
    int i = 0;
 
    while (s1[i] && s1[i] == s2[i]) 
    {
       i++;
    }
    if (s1[i] == '\0' && s2[i] == '\0') return 1;
 
    return 0;
}


answered Jul 13, 2014 by avibootz

Related questions

1 answer 179 views
2 answers 815 views
2 answers 286 views
1 answer 116 views
1 answer 144 views
144 views asked Aug 23, 2024 by avibootz
1 answer 139 views
1 answer 111 views
...