1.使用指定宽度的整数类型
1.1 ISO C99在标准在文件stdint.h中引入了整数类型,格式如下:
intN_t //有符号整数
unitN_t //无符号整数
注:
N为指定宽度,例如 64位无符号整型:uint64_t
1.2 格式化输入/输出中,格式控制符 使用什么符号
在inttypes.h中定义了 intN_t/uintN_t 对应的格式控制符 PRIdN/PRIuN.
示例代码如下:
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
int main()
{
int32_t x = -9;
uint64_t y = 990;
printf("x = %" PRId32 ",y = %" PRIu64 "\n", x, y);
return 0;
}
输出结果
x = -9,y = 990