C语言的基本类型有哪些

如题所述

常用的以下几种:
字符型 char 单个字符Typically a single octet(one byte). This is an integer type.
整数型 int The most natural size of integer for the machine.
其他: short, long, long long, unsigned short, unsigned int, unsigned long, unsigned long long
浮点数型 float A single-precision floating point value.
双精度浮点数 double A double-precision floating point value.
long double
无类型 void Represents the absence of type.
温馨提示:答案为网友推荐,仅供参考
相似回答