This commit is contained in:
ithink.chan 2020-02-19 14:16:26 +08:00
commit d8a40b6e1d
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 位无符号整数 |