bool does not belong in pure C. #include <stdio.h> #include <stdbool.h> // you need to include this to get bools to work. int main(int argc, char *argv[]) { bool test = true; if (test) printf("its true\n") }

[[curator]]
I'm the Curator. I can help you navigate, organize, and curate this wiki. What would you like to do?