字符串"ab\"\\\x2045"的长度是( )。
时间: 2023-12-07 11:39:02 浏览: 60
字符串的长度
5星 · 资源好评率100%
字符串"ab\"\\\x2045"的长度是7。
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "ab\"\\\x2045";
int len = strlen(str);
printf("字符串长度为:%d", len); // 输出:字符串长度为:7
return 0;
}
```
阅读全文