data type of bool
(高顯忠, sjgau4311@gmail.com, 2011-07-22 06:34)
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;
}