NotePublic/Software/Development/Libs/C_Standard_Library/C_标准输入输出及格式化说明.md

16 lines
328 B
Markdown
Raw Normal View History

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