【发布时间】:2013-12-20 07:08:06
【问题描述】:
在下面的页面中,我找到了类似的代码
CERT INT15-C Use intmax_t or uintmax_t for formatted IO on programmer-defined integer types
uintmax_t temp;
if(scanf("%ju", &temp) != 1) {
...
我不熟悉“%ju”说明符。而且我在网上也没有成功找到“%ju”的解释。
这是由某些特定的编译环境定义的,还是一般使用的?
【问题讨论】: