how to compare string in if statement in c code example
Example 1: how to compare strings in c
if (strcmp(strA,strB) != 0){
...
}
Example 2: string compare in c
strcmp(leftStr, rightStr);
//compares ascii value and gives positive, negative or zero.