string equals c code example
Example 1: strcmp c library
#include <string.h>
Example 2: c string equal
int strEqu(char *a, char *b)
{
int i = 0;
while (1)
{
if (*(a + i) == 0 && *(b + i) == 0) return 1;
else if (*(a + i) != *(b + i)) return 0;
i++;
}
}
Example 3: string compare in c
strcmp(str1, str2) = 32
strcmp(str1, str3) = 0