c boolean

#include <stdio.h>

typedef int bool;
#define true 1
#define false 0

int main() {
    bool isTrue = true;

    if (isTrue) {
        printf("The boolean is true.\n");
    } else {
        printf("The boolean is false.\n");
    }

    return 0;
}