strlen strcmp
时间: 2023-12-15 12:32:38 浏览: 105
strlen和strcmp都是C语言中的字符串函数。
strlen函数用于计算字符串的长度,其原型为:
```c
size_t strlen(const char *str);
```
其中,str为要计算长度的字符串,返回值为字符串的长度,不包括字符串末尾的'\0'。
例如,对于字符串"abcde",其长度为5,可以使用以下代码进行计算:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "abcde";
printf("%d\n", strlen(str)); // 输出:5
return 0;
}
```
strcmp函数用于比较两个字符串的大小,其原型为:
```c
int strcmp(const char *str1, const char *str2);
```
其中,str1和str2为要比较的两个字符串,返回值为整型,如果str1小于str2,则返回负数;如果str1等于str2,则返回0;如果str1大于str2,则返回正数。
例如,对于字符串"abc"和"def",可以使用以下代码进行比较:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "abc";
char str2[] = "def";
int result = strcmp(str1, str2);
printf("%d\n", result); // 输出:-3
return 0;
}
```
阅读全文