文章目录
- 前言
- 一、题目描述
- 二、解题
- 程序运行代码
- 总结
前言
本系列为字符串处理函数编程题,点滴成长,一起逆袭。
一、题目描述
二、解题
程序运行代码
#include<stdio.h>
#include<string.h>
int main() {
char *str1 = "hello world";
char *str2 = "hello mike";
if (strcmp(str1, str2) == 0)
{
printf("str1==str2\n");
}
else if (strcmp(str1, str2) > 0)
{
printf("str1>str2\n");
}
else
{
printf("str1<str2\n");
}
return 0;
}
总结
字符串比较函数
格式:int strcmp(字符串1地址,字符串2地址)
比较两字符串的大小,比较的是字符ASCII码大小。
字符串1=字符串2,函数的返回值为0
字符串1>字符串2,返回值为一正整数
字符串1<字符串2,返回值为一负整数