[c] C에서 int64_t 유형을 인쇄하는 방법

C99 표준에는 int64_t와 같은 바이트 크기의 정수 유형이 있습니다. 다음 코드를 사용하고 있습니다.

#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);

PRIx6416 진수로 인쇄 할 수도 있습니다 .

cppreference.com에는intptr_t ( PRIxPTR)을 포함하여 모든 유형에 사용 가능한 매크로 의 전체 목록 이 있습니다 . 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_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)

이에 따라되고 printf(3)내 리눅스 시스템 (man 페이지는 특히 말한다 j로 변환 표시하는 데 사용됩니다 intmax_t또는 uintmax_t, 내 stdint.h에, 모두 int64_tintmax_t, 유사 정확히 같은 방식으로 typedef되어있다 uint64_t). 이것이 다른 시스템에 완벽하게 이식 가능한지 확실하지 않습니다.


답변

uclibc조차도 항상 사용할 수있는 것은 아니며 임베디드 코드에서 나오는 코드

uint64_t myval = 0xdeadfacedeadbeef;
printf("%llx", myval);

당신은 쓰레기를 인쇄하거나 전혀 작동하지 않습니다-나는 항상 작은 도우미를 사용하여 올바르게 uint64_t 16 진수를 덤프 할 수 있습니다.

#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

리눅스에서는

%lld


답변

//VC6.0(386 이상)

    __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);

문안 인사.


답변