题目:确定不同整型数据类型在内存中占多大(字节),输出不同整型数据类型在内存中占多大(字节)。 C语言: #include 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 bytes.\n",sizeof(long)); printf...