#include <stdint.h>

stdint.h是c99中引进的一个标准C库的头文件。

 1 #include<stdio.h>
 2 #include<stdint.h>
 3 
 4 main()
 5 {
 6     /* 数据类型可以跨平台移植,字节都一样,只要支持C99编译器都可以 */
 7     int32_t num = 123;
 8     
 9     printf("%d,%d
", sizeof(num), num);
10 
11     getchar();
12 }
原文地址:https://www.cnblogs.com/denggelin/p/5459389.html