C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
If you are using a C99 compiler it has built-in support for bool types:
#include int main() { bool b = false; b = true; }
http://en.wikipedia.org/wiki/Boolean_data_type