int64_t的输出格式

int64_t num;

num = 666;

printf("the num is %" PRId64,num);

注意:PRId64前面有空格!!!

ps: 搞了半个小时,终于弄对了。

你可能感兴趣的:(基础知识)