c语言strcmp怎么用
#include
#include
int main() {
char str1[] = "Hello";
char str2[] = "World";
int result = strcmp(str1, str2);
if (result == 0) {
printf("字符串相等。
");
} else if (result
输出:
str1 小于 str2。登录后复制
#include
#include
int main() {
char str1[] = "Hello";
char str2[] = "World";
int result = strcmp(str1, str2);
if (result == 0) {
printf("字符串相等。
");
} else if (result
输出:
str1 小于 str2。登录后复制