知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
data type of bool
1樓
#include <stdio.h>
#include <stdlib.h>

int main()
{
// bool
bool b2;// true= 1, false= 0
b2= !(3 > 2);
b2= true;
printf("b2= %d \n", b2);
system("pause");
return 0;
}