$ cat size.c #include <stdio.h> #include <stdint.h> void main() { int a; int64_t b; printf("%d\n", sizeof(a)); printf("%d\n", sizeof(b)); } |
$ ./a.out 4 8 |
+
#include <stdint.h>를 넣지 않으면 에러가 발생한다. $ gcc size.c size.c: In function ‘main’: size.c:6:2: error: unknown type name ‘int64_t’ |
2013/01/13 - [프로그램 사용/gcc] - gcc 64bit 확장
'프로그램 사용 > gcc' 카테고리의 다른 글
precompiled header on GCC (라즈베리로 테스트) (2) | 2015.07.30 |
---|---|
gcc에서 precompiled header 사용하기 (0) | 2015.07.29 |
gcc 32bit/ 64bit 컴파일하기 (0) | 2015.07.14 |
gcc 특정 표준 따르도록 강제하기 (0) | 2015.07.14 |
크기가 0인 배열 허용 (0) | 2015.06.29 |