Possible Duplicate:
how to printf uint64_t?

I want to print u_int64_t in C. I want to know the format specifier for this? I am a C user, I want to do a printf().

有帮助吗?

解决方案

#include <inttypes.h>
#include <stdio.h>

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

其他提示

You can use the L modifier for 64-bit integers, eg:

u_in64_t number;
printf("%Lu", number);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top