当前位置:首页 > 行业动态 > 正文

c语言计算字符串个数怎么表示

在C语言中,我们可以通过遍历字符串的方式来计算字符串的个数,以下是一个简单的示例:

#include <stdio.h>
#include <string.h>
int main() {
    char str[] = "Hello, world!";
    int count = 0;
    for (int i = 0; str[i] != '
0