string compare function in c code example
Example 1: strcmp c
// use: strcmp(string1, string2);
string a = "words";
string b = "words";
if (strcmp(a, b) == 0)
{
printf("a and b match");
// strcmp returns 0 if both strings match
}
else
{
printf("a and b don't match");
// strcmp returns anything else if the strings dont match
}
Example 2: strcmp c library
#include <string.h>
Example 3: string compare in c
strcmp(str1, str2) = 32
strcmp(str1, str3) = 0