This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# **printf**
## 说明
**printf命令** 格式化并输出结果到标准输出
## 选项
```markdown
和C语言printf一样,FORMAT控制输出,转义序列如下:
\" 双引号
\\ 反斜杠
\a 警告字符,通常是ASCII的(BEL)字符
\b 后退
\c 抑制(不显示)输出结果中任何结尾的换行字符(只在%b格式指示符控制下的参数字符串中有效)
\e escape
\f 换页(form feed)
\n 换行
\r 回车(carriage return)
\t 水平制表符
\v 垂直制表符
\NNN byte with octal value NNN (1 to 3 digits)
\xHH byte with hexadecimal value HH (1 to 2 digits)
\uHHHH Unicode (ISO/IEC 10646) character with hex value HHHH (4 digits)
\UHHHHHHHH Unicode character with hex value HHHHHHHH (8 digits)
%% a single %
%b ARGUMENT as a string with '\' escapes interpreted, except that octal escapes are of the form \0 or \0NNN