用c++写一个计算字符串长度的程序
时间: 2023-11-26 21:03:40 浏览: 210
编写一个程序,求字符串的长度
5星 · 资源好评率100%
好的,以下是使用 C 语言写一个计算字符串长度的程序的代码:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str[100];
int len;
printf("请输入一个字符串:\n");
scanf("%s", str);
len = strlen(str);
printf("该字符串的长度是:%d\n", len);
return 0;
}
```
请问还有什么问题吗?
阅读全文