其他分享
首页 > 其他分享> > 字符串长度

字符串长度

作者:互联网

处理代码

for(int i = 0 , c = chars ; *c ; ++i , ++c);

代码解释

chars: 为数组的首地址

*c: 是循环中的判断条件,当*c不为空时,则循环继续

标签:++,chars,int,循环,字符串,长度,空时,代码
来源: https://blog.csdn.net/qq_22841387/article/details/120747715