C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
You can use a char, or another small number container for it.
Pseudo-code
#define TRUE 1 #define FALSE 0 char bValue = TRUE;