Já jsem Atro, a jsem celkem wannabe programator, ale když se snažím, něco se v ty mojí hlavě najde:)
int main() {
bool x = false;
if (x == true) {
printf("The value of x is true");
} else {
printf("The value of x is false");
}
return 0;
// Output: The value of x is false
}