16.字符串处理函数——字符串长度函数

文章目录

  • 前言
  • 一、题目描述
  • 二、解题
    • 程序运行代码
  • 总结


前言

本系列为字符串处理函数编程题,点滴成长,一起逆袭。


一、题目描述

16.字符串处理函数——字符串长度函数_第1张图片


二、解题

程序运行代码

#include
#include
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’在内)

你可能感兴趣的:(第六章数组,c语言,算法,数据结构)