CAP/MiniC/TP04/tests/students/base/test_not.c

15 lines
150 B
C
Raw Normal View History

2024-10-21 23:10:10 +02:00
#include "printlib.h"
int main() {
bool x, y;
x = true;
y = false;
println_bool(!x);
println_bool(!y);
return 0;
}
// EXPECTED
// 0
// 1