1 strcmp(s1, s2)
在 C 语言中,我们可以使用 strcmp()
函数比较 char*
类型字符串的字典序。
- 当字符串 s1 的字典序小于字符串 s2 的字典序时,返回值 < 0。
- 当字符串 s2 的字典序大于字符串 s1 的字典序时,返回值 > 0。
- 当字符串 s1 的字典序等于字符串 s2 的字典序时,返回值 = 0。
#include <iostream>
using namespace std;
int main() {
char s1[2] = "a";
char s2[2] = "b";
cout << strcmp(s1, s2) << endl; //-1
cout <