阅读量:0
在C语言中,可以使用标准库函数strlen()
来获取字符串的长度。需要包含头文件
来使用这个函数。
#include #include int main() { char str[] = "Hello, World!"; int length = strlen(str); printf("Length of the string: %dn", length); return 0; }
上面的代码会输出字符串"Hello, World!"
的长度为13
。