6
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); …