码迷,mamicode.com
首页 > 其他好文 > 详细

int64_t 显示

时间:2015-09-01 12:42:22      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:


if using C++ on Linux, be sure to #define __STDC_FORMAT_MACROS before including inttypes.h.

For int64_t type:

int64_t t;printf("%" PRId64 "\n", t);

for uint64_t type:

uint64_t t;printf("%" PRIu64 "\n", t);

you can also use PRIx64 to print in hexadecimal.

These macros are defined in inttypes.h


int64_t 显示

标签:

原文地址:http://my.oschina.net/tsh/blog/500097

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!