C语言-郝斌笔记-003数据类型

基本类型数据

整数

整型     —— int          --4字节 

短整型   —— short int      ——2字节

长整型   —— long int       ——8字节      

 

浮点数【实数】

单精度浮点数 —— float      ——4字节

双精度浮点数 —— double   ——8字节

 

字符

char                        ——1字节

复合类型数据

结构体

枚举

共用体(已淘汰)

原文地址:https://www.cnblogs.com/shamgod/p/5392898.html