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 변수를 인쇄하려면 어떤 형식을 사용해야합니까?