补充 C 标准输入输出及格式化说明 的部分内容.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2020-02-18 23:28:09 +08:00
parent 3f7c66df10
commit d54756fb9e
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# C 标准输入输出及格式化说明
## 格式化
%[flags][width][.prec][length]type
即:
%[标志][最小宽度][.精度][类型长度]类型
### 类型长度length
| length | Description |
|--------|-------------|
| h | 长度缩减一半,如 %hu 为 16 位无符号整数,%hhu 为 8 位无符号整数 |