gpt4 book ai didi

c - 打印 int_fast_32_t 等数据类型的可移植和正确方法是什么

转载 作者:行者123 更新时间:2023-12-05 09:03:57 25 4
gpt4 key购买 nike

我一直在读this并怀疑打印此数据类型的正确且可移植的方法是什么?

uint_fast8_t
uint_fast16_t
uint_fast32_t
uint_fast64_t

也签名了。

最佳答案

包括 <inttypes.h> 并使用其中的宏

#include <inttypes.h> // <inttypes.h> also includes <stdint.h> on its own
uint_fast8_t a = 0;
uint_fast16_t b = 0
uint_fast32_t c = 0;
uint_fast64_t d = 0;

printf("%" PRIuFAST8 " %" PRIuFAST16 " %" PRIuFAST32 " %" PRIuFAST64 "\n", a, b, c, d);

关于c - 打印 int_fast_32_t 等数据类型的可移植和正确方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69365257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com