mirror of
https://github.com/Aexiar/c.git
synced 2024-10-22 14:05:45 +02:00
c
This commit is contained in:
parent
b0e2490a03
commit
3993c34938
@ -1265,7 +1265,7 @@ char str[32];
|
||||
* 字符串不像整数、浮点数以及字符那样有固定的大小,字符串是不定长的,如:`"Hello World"`、`"Hi"` 等的长度就是不一样的。在 C 语言中,规定了字符串的结尾必须是 `\0` ,这种字符串也被称为 `C 风格的字符串`,如:
|
||||
|
||||
```c
|
||||
"HelloWorld" // 在 C 语言中,底层存储就是 HelloWorld\0
|
||||
"Hello World" // 在 C 语言中,底层存储就是 Hello World\0
|
||||
```
|
||||
|
||||
* 其对应的图示,如下所示:
|
||||
|
Loading…
Reference in New Issue
Block a user