|
printf这几个参数是有人能详细解释一下么?(%bx %bu)内有例子
[复制链接]
以前没怎么在51下开发,
现在看到这样一个例子
typedef enum
{
a00,
a01,
a02,
a03,
a04,
a05,
a06,
a07,
a08,
a09,
a0a,
a0b,
a0c,
}testtype;
printf("[%d][%bx][%bu]\n",a0a,a0a,(U8)a0a);
输出结果: [2570][a][213]
看结果的话,大概能看得明白。只是找不到 %b 这个参数起了什么作用,好像在网上找不到对其的说明?
|
|