在C語言中,可以使用strcmp()函數來判斷兩個字符串是否相等。strcmp()函數會比較兩個字符串的內容,如果相等則返回0,如果不相等則返回非0的值。例如:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "hello";
if (strcmp(str1, str2) == 0) {
printf("The strings are equal\n");
} else {
printf("The strings are not equal\n");
}
return 0;
}
上面的代碼會輸出"The strings are equal",因為str1和str2的內容是相等的。如果str2的內容是"world",則會輸出"The strings are not equal"。