标签:ESS col 字符 test lin 长度 遇到 return sign
返回字符串长度
Action() { char test[] = "yyyHHHJJJoo"; unsigned int a; a = strlen(test); lr_output_message("%d",a); return 0; }
在计算字符串长度时, strlen一旦遇到“\0"就会认为字符串已经结束。因此, "This is a test!"与"This is a test!\0abcde"的长度是一样的。
标签:ESS col 字符 test lin 长度 遇到 return sign
原文地址:https://www.cnblogs.com/lvchengda/p/12626497.html