stdint.h介绍

1、stdint.h是c99中引进的一个标准C库的头文件

2、大数输出

int64_t数的输出:%lld ;   

uint64_t数的输出:%llu ;   

uint64_t数十六进制输出:%llx ;   

uint64_t数八进制输出:%llo ;

猜你喜欢

转载自blog.csdn.net/xiezhi123456/article/details/81557358