auto和bool
Posted 芬乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了auto和bool相关的知识,希望对你有一定的参考价值。
一、auto‘
1.只要在函数内部定义变量,默认是auto
int num 等价于 auto int num = 10;
2.C语言中的auto关键字就是自动分配自动释放
二、bool类型
1.头文件stdbool.h
_Bool b = true;
_Bool b1 = 10; 表示true,非0是1,0是0;
printf("%d",sizeof(b)); 1个字节
以上是关于auto和bool的主要内容,如果未能解决你的问题,请参考以下文章