在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函數的返回值,可以輸出相應的比較結果。