在C語言中,可以使用strcmp函數來比較兩個字符串是否相等。strcmp函數的原型如下:
int strcmp(const char *str1, const char *str2);
該函數接受兩個參數,分別是要比較的兩個字符串。如果兩個字符串相等,則返回值為0;如果str1小于str2,則返回值小于0;如果str1大于str2,則返回值大于0。以下是一個示例代碼:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello";
char str2[] = "Hello";
char str3[] = "Hi";
if (strcmp(str1, str2) == 0) {
printf("str1 and str2 are equal.\n");
} else {
printf("str1 and str2 are not equal.\n");
}
if (strcmp(str1, str3) == 0) {
printf("str1 and str3 are equal.\n");
} else {
printf("str1 and str3 are not equal.\n");
}
return 0;
}
運行上述代碼,輸出結果如下:
str1 and str2 are equal.
str1 and str3 are not equal.