//方法一 直接用 sizeof 算类型长度, //注意打印内容直接复制粘贴过来,不要自己去敲了,可能会漏掉空格或者点 // #include <stdio.h> // int main() // { // printf("The size of short is %d bytes.\n", sizeof(short)); // printf("The size of int is %d bytes.\n", sizeof(int)); // printf("The size of long is %d b...