Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: f uint64_tをprintする方法は?
u_int64_tCで印刷したいのですが、このためのフォーマット指定子を知りたいですか?私はCユーザーです。やりたいですprintf()。
u_int64_t
printf()
#include <inttypes.h> #include <stdio.h> uint64_t t = 42; printf("%" PRIu64 "\n", t);
L64ビット整数の修飾子を使用できます。例:
L
u_in64_t number; printf("%Lu", number);