octal is eight in Chinese

This commit is contained in:
zang 2014-10-14 16:13:22 +08:00
parent 0001d590c6
commit 6119f4b307

View File

@ -566,7 +566,7 @@ typedef void (*my_fnp_type)(char *);
'\'' // 单引号 '\'' // 单引号
'\"' // 双引号 '\"' // 双引号
'\xhh' // 十六进制数字. 例子: '\xb' = vertical tab '\xhh' // 十六进制数字. 例子: '\xb' = vertical tab
'\ooo' // 进制数字. 例子: '\013' = vertical tab '\ooo' // 进制数字. 例子: '\013' = vertical tab
// 打印格式: // 打印格式:
"%d" // 整数 "%d" // 整数
@ -579,7 +579,7 @@ typedef void (*my_fnp_type)(char *);
"%c" // 字母 "%c" // 字母
"%p" // 指针 "%p" // 指针
"%x" // 十六进制 "%x" // 十六进制
"%o" // 进制 "%o" // 进制
"%%" // 打印 % "%%" // 打印 %
/////////////////////////////////////// ///////////////////////////////////////