可能重复: 如何打印uint64_t?
我想在 C 中打印
u_int64_t
printf()
#include <inttypes.h> #include <stdio.h> uint64_t t = 42; printf("%" PRIu64 "\n", t);
您可以对 64 位整数使用
L
u_in64_t number; printf("%Lu", number);