C语言统计一个字符串中包含多少个字符

是这样的,想请分析下,C语言统计一个字符串中包含多少个字符
最新回答
铲屎大将军

2024-11-24 07:59:37

C语言统计一个字符串中包含多少个字符

字符串:str

运行结果:显示str中的字符数量


完整代码:

#include <stdio.h>

int main() {

char str[] = "Hello, World!";

int len = 0;

for (int i = 0; str[i] != '\0'; i++) {

len++;

}

printf("字符个数: %d\n", len);

return 0;

}