For int64_t type: #include int64_t t; printf("%" PRId64 "\n", t); for uint64_t type: #include uint64_t t; printf("%" PRIu64 "\n", t);
確定! 回上一頁