数据类型用于声明变量
常见数据类型
char 字符型
char的使用:
int main() { char ch='a'; printf("%c\n",a); return 0; }
int 整型
(short int 短整型
long int 长整型
long long int 更长的整型)
int的使用:
int main() { int a=10; printf("%d\n",a); return 0; }
float 单精度浮点数
double 双精度浮点数
_Bool 布尔类型:专门表示真假的
(C语言中0表示假,非0表示真)
布尔类型的使用要包含头文件 #include<stdbool.h>
布尔类型变量的取值是:true或者false
布尔类型的使用:
int main() { _Bool flag=true; if(flag) printf("hehe\n"); return 0; }