C语言字符串ABC字节数
时间: 2024-01-03 07:03:22 浏览: 97
C#获取字符串的字节数
4星 · 用户满意度95%
根据提供的引用内容,C语言中的字符串常量是以NUL字节结尾的0个或多个字符组成的序列。因此,C语言字符串"ABC"的字节数为3个,因为它由3个字符组成。下面是一个简单的C语言程序,用于演示如何计算字符串的字节数:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "ABC";
int len = strlen(str);
printf("The length of the string is %d\n", len);
return 0;
}
```
输出结果为:
```
The length of the string is 3
```
阅读全文