在C语言中,可以使用scanf函数读取输入的字符串,并使用strcmp函数来进行字符串比较。下面是一个示例代码:
#include <stdio.h>
#include <string.h>
int main() {
char str1[100], str2[100];
printf("Enter first string: ");
scanf("%s", str1);
printf("Enter second string: ");
scanf("%s", str2);
if(strcmp(str1, str2) == 0) {
printf("The strings are equal.\n");
} else {
printf("The strings are not equal.\n");
}
return 0;
}
在这个示例中,首先通过scanf函数读取两个字符串,并使用strcmp函数来比较它们。如果两个字符串相等,strcmp函数会返回0,否则返回一个非零值。根据strcmp函数的返回值,可以输出相应的比较结果。