C99标准具有字节大小为int64_t的整数类型。我正在使用Windows的%I64d格式(或unsigned %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变量没有警告?


当前回答

来自嵌入式世界,即使uclibc也不是总是可用的,代码像

uint64_t浣熊=0xdeadfacedeadbeef; printf(“%llx”, raccoon);

打印你的垃圾或根本不工作-我总是使用一个小帮手,这让我正确转储uint64_t十六进制:

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

char* ullx(uint64_t val)
{
    static char buf[34] = { [0 ... 33] = 0 };
    char* out = &buf[33];
    uint64_t hval = val;
    unsigned int hbase = 16;

    do {
        *out = "0123456789abcdef"[hval % hbase];
        --out;
        hval /= hbase;
    } while(hval);

    *out-- = 'x', *out = '0';

    return out;
}

其他回答

当我在寻找一种以十六进制显示64位数字的方法时,偶然发现了这个问题:

发现你可以使用:

0x%016llx -至少与我的编译器工作(aarch64 GCC 7.3.0)

// v6.0 (386 & better)

    __int64 my_qw_var = 0x1234567890abcdef;

    __int32 v_dw_h;
    __int32 v_dw_l;

    __asm
        {
            mov eax,[dword ptr my_qw_var + 4]   //dwh
            mov [dword ptr v_dw_h],eax

            mov eax,[dword ptr my_qw_var]   //dwl
            mov [dword ptr v_dw_l],eax

        }
        //Oops 0.8 format
    printf("val = 0x%0.8x%0.8x\n", (__int32)v_dw_h, (__int32)v_dw_l);

的问候。

在C99中,%j长度修饰符也可以与printf系列函数一起使用,打印类型为int64_t和uint64_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_t或uintmax_t;在我的stdint.h, int64_t和intmax_t都是类型定义在完全相同的方式,类似的uint64_t)。我不确定这是否完全可以移植到其他系统。

来自嵌入式世界,即使uclibc也不是总是可用的,代码像

uint64_t浣熊=0xdeadfacedeadbeef; printf(“%llx”, raccoon);

打印你的垃圾或根本不工作-我总是使用一个小帮手,这让我正确转储uint64_t十六进制:

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

char* ullx(uint64_t val)
{
    static char buf[34] = { [0 ... 33] = 0 };
    char* out = &buf[33];
    uint64_t hval = val;
    unsigned int hbase = 16;

    do {
        *out = "0123456789abcdef"[hval % hbase];
        --out;
        hval /= hbase;
    } while(hval);

    *out-- = 'x', *out = '0';

    return out;
}

在windows环境下,使用

%I64d

在Linux中,使用

%lld