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")
}
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")
}