C语言数据类型关键字

最初 K&R 给出的关键字 C90 标准添加的关键字 C99 标准添加的关键字
int signed _Bool
long void _Complex
short   _Imaginary
unsigned    
char    
float    
double    

表格数据来自《C Primer Plus》P42 表3.1 C语言的数据类型关键字

其中有 3 个用来修饰基本类型的关键字:short、long、unsigned

数据类型中的 3 个修饰关键字可以与其他或自身组成新的数据类型。

猜你喜欢

转载自www.cnblogs.com/YMaster/p/11823965.html
今日推荐