strcmp函數用于比較兩個字符串是否相等。
其函數原型為:
int strcmp(const char *str1, const char *str2);
參數str1和str2分別為要比較的兩個字符串,返回值為整數。當str1小于str2時,返回一個負數;當str1大于str2時,返回一個正數;當str1等于str2時,返回0。
示例代碼如下:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello";
char str2[] = "World";
int result = strcmp(str1, str2);
if (result < 0) {
printf("str1 is less than str2\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is equal to str2\n");
}
return 0;
}
輸出結果為:
str1 is less than str2
可以看出,由于字母’H’比字母’W’在ASCII碼中小,所以str1小于str2。