Hello
I am new to c programming. I need to write own code for comparing two strings in C and not use inbuilt strcmp function. Can someone please help me with this.
C
Last Comment
codez80
8/22/2022 - Mon
grg99
Here's a huge hint:
start with i = 0;
compare str1[ i ] with str2[ i ].
if they're both '\0', then the strings are equal, return 0.
if they're not '\0', and equal, move on to the next character (i+1)
now we've found two unequal characters at position i.
if the first one is > the second one, return +1
otherwise return -1.
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
start with i = 0;
compare str1[ i ] with str2[ i ].
if they're both '\0', then the strings are equal, return 0.
if they're not '\0', and equal, move on to the next character (i+1)
now we've found two unequal characters at position i.
if the first one is > the second one, return +1
otherwise return -1.
That's pretty much it.