如何打印一个int64

C99标准具有像int64_t字节大小的整数类型。 我正在使用下面的代码:

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

我得到这个编译器警告:

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

我试着用:

printf("This is my_int: %lldn", 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为所有类型提供了可用宏的完整列表,包括intptr_tPRIxPTR )。 scanf有单独的宏,如SCNd64


PRIu16的典型定义是"hu" ,所以在编译时会发生隐式字符串常量级联。

要使代码完全可移植,必须使用PRId32等打印int32_t ,并使用"%d"或类似方法打印int


C99的方式是

#include <inttypes.h>
int64_t my_int = 999999999999999999;
printf("%" PRId64 "n", my_int);

或者你可以施放!

printf("%ld", (long)my_int);
printf("%lld", (long long)my_int); /* C89 didn't define `long long` */
printf("%f", (double)my_int);

如果您坚持使用C89实现(特别是Visual Studio),则可以使用开源的<inttypes.h> (和<stdint.h> ):http://code.google.com/p/msinttypes/


使用C99时, %j长度修饰符也可以用于printf函数族来打印int64_tuint64_t类型的值:

#include <stdio.h>
#include <stdint.h>

int main(int argc, char *argv[])
{
    int64_t  a = 1LL << 63;
    uint64_t b = 1ULL << 63;

    printf("a=%jd (0x%jx)n", a, a);
    printf("b=%ju (0x%jx)n", b, b);

    return 0;
}

使用gcc -Wall -pedantic -std=c99编译此代码不会产生警告,并且程序将打印预期的输出:

a=-9223372036854775808 (0x8000000000000000)
b=9223372036854775808 (0x8000000000000000)

这是根据我的Linux系统上的printf(3) (手册页特别指出, j用于表示转换为intmax_tuintmax_t ;在我的stdint.h中, int64_tintmax_t完全相同方式,和uint64_t类似)。 我不确定这是否完全适用于其他系统。

链接地址: http://www.djcxy.com/p/72217.html

上一篇: How to print a int64

下一篇: printf not printing the correct values