第六章完结

This commit is contained in:
lzy
2024-04-11 17:36:16 +08:00
parent 1a690b5737
commit 4ef71d5b95
10 changed files with 969 additions and 2 deletions

View File

@@ -324,7 +324,7 @@ static void primer(void)
```c
size_t strlen(const char *s);
// strlen函数可以后去字符串的长度,不包括尾'\0'
// strlen函数可以获取字符串的长度,不包括尾'\0'
// 以'\0'作为结束,所以对于"hello\0abc"abc就不计入
// sizeof是完整的识别。