doc: update docs/c.md (#426)

This commit is contained in:
jaywcjlove 2023-09-10 15:34:31 +08:00
parent 676c87ffe8
commit 08614a6ce8

View File

@ -54,8 +54,8 @@ int x = 5, y = 6, z = 50;
```
### 常量 Constants
注释
常量在 C 语言中我们一般理解为不能被改变的值,活用常量与符号常量
常量在 C 语言中我们一般理解为不能被改变的值活用常量与符号常量
```c
const int minutesPerHour = 60;