Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

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 155 views
2 answers 782 views
2 answers 252 views
1 answer 87 views
1 answer 109 views
109 views asked Aug 23, 2024 by avibootz
1 answer 113 views
1 answer 90 views
...