c - 如何在 C 中移植打印 int64_t 类型

标签 c stdint

C99 标准具有字节大小的整数类型,如 int64_t。我当前使用 Windows 的 %I64d 格式(或无符号 %I64u),例如:

#include <stdio.h>
#include <stdint.h>
int64_t my_int = 999999999999999999;
printf("This is my_int: %I64d\n", my_int);

我收到这个编译器警告:

warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’

我尝试过:

printf("This is my_int: %lld\n", my_int); // long long decimal

但我收到了同样的警告。我正在使用这个编译器:

~/dev/c$ cc -v
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /var/tmp/gcc/gcc-5664~89/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Apple Inc. build 5664)

我应该使用哪种格式来打印 my_int 变量而不发出警告?

最佳答案

对于 int64_t 类型:

#include <inttypes.h>
int64_t t;
printf("%" PRId64 "\n", t);

对于uint64_t类型:

#include <inttypes.h>
uint64_t t;
printf("%" PRIu64 "\n", t);

您还可以使用PRIx64以十六进制打印。

cppreference.com has a full listing所有类型的可用宏,包括 intptr_t (PRIxPTR)。 scanf 有单独的宏,例如 SCNd64

<小时/>

PRIu16 的典型定义是“hu”,因此隐式字符串常量连接发生在编译时。

为了使您的代码完全可移植,您必须使用 PRId32 等来打印 int32_t,以及 "%d" 或类似的用于打印int

关于c - 如何在 C 中移植打印 int64_t 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30543889/

相关文章:

c - 有没有办法修复 stdint 类型的格式说明符警告?

c - 在嵌入式 MCU 应用程序中,在 for 循环中使用 uint_fast16_t 还是 size_t 更好?

python - 如何使用 python 变量而不是硬编码值创建 ctypes 变量?

c - 我尝试在 Ruby 和 C 之间编写 unix 域套接字通信脚本

c - 如何读取子进程的输出?

c - int 值的 printf 仅返回第一个字符

visual-c++-6 - VC6 : fatal error C1083: Cannot open include file: 'stdint.h'

c - 解释 "About size_t and ptrdiff_t"中的这段话

c - 常见架构的最快整数类型

检查矩阵的行是否在 O(1) 时间内充满 1