c语言的合法数据类型关键字
时间: 2024-01-20 18:13:35 浏览: 267
C语言中的合法数据类型关键字包括:
char、int、short、long、float、double、signed、unsigned、void、_Bool、_Complex、_Imaginary。
其中,char、int、short、long、float、double、signed、unsigned、void是基本数据类型,_Bool、_Complex、_Imaginary是C99标准新增的数据类型。
相关问题
C语言提供的合法的数据类型关键字是:integer,Char,short,Double
C语言提供的合法数据类型关键字是:int、char、short、double。
- int:整型,用于存储整数。
- char:字符型,用于存储单个字符。
- short:短整型,用于存储较小的整数。
- double:双精度浮点型,用于存储小数(带有小数点)。
请注意,这些数据类型关键字都是小写的。
合法的c语言关键字有哪些
C语言的关键字共有32个,包括auto、break、case、char、const、continue、default、do、double、else、enum、extern、float、for、goto、if、int、long、register、return、short、signed、sizeof、static、struct、switch、typedef、union、unsigned、void、volatile、while。其中,auto、double、int、struct、break、else、long、switch、case、enum、register、typedef、char、extern、return、union、const、float、short、unsigned、continue、for、signed、void、default、goto、sizeof、volatile、do、if、static、while是C语言的关键字。这些关键字根据其作用可以分为数据类型关键字、控制语句关键字、存储类型关键字和其它关键字四类。
阅读全文