文章目录
- 前言
- 一、题目描述
- 二、解题
- 程序运行代码
- 总结
前言
本系列为字符串处理函数编程题,点滴成长,一起逆袭。
一、题目描述
二、解题
程序运行代码
#include<stdio.h>
#include<string.h>
int main() {
char str[ ]="0123\0456789";
char str1[]="0123\0abced";
char str2[]="\x69\082\n";
char str3[]="\t\v\\\0wil\\n";
char str4[]={'a' ,'\0','b','ç'};
puts(str);
printf("%d\n",strlen(str));
puts(str1);
printf("%d\n",strlen(str1));
puts(str2);
printf("%d\n",strlen(str2));
puts(str3);
printf("%d\n",strlen(str3));
puts(str4);
printf("%d\n",strlen(str4));
return 0;
}
总结
字符串长度函数
格式:int strlen(字符串)到\0结束
实际长度,不包括’\0’在内)