C语言基础 strlen 函数
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 strlen 函数
//@Time:2021/06/02 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
#include "stdafx.h"
#include
#include
void main()
{
char* p = "www.codersrc.com";
printf("字符串:%s 长度:%d
", p,strlen(p));
char* p1 = "www";
printf("字符串:%s 长度:%d
", p1, strlen(p1));
char* p2 = "0123456789";
printf("字符串:%s 长度:%d
", p2, strlen(p2));
char* p3 = "012340 56789";
printf("字符串:%s 长度:%d
", p3, strlen(p2));
system("pause");
}