CAP/MiniC/TP04/tests/provided/step2/test_bool.c

20 lines
222 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
bool b;
b = false;
println_bool(b);
b = true;
println_bool(b);
println_bool(true);
println_bool(false);
return 0;
}
// EXPECTED
// 0
// 1
// 1
// 0