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

16 lines
153 B
C
Raw Normal View History

2024-10-21 23:10:10 +02:00
#include "printlib.h"
int main() {
int x, y;
if (x != 0) {
y = 12;
} else {
y = -3;
}
println_int(y);
return 0;
}
// EXPECTED
// -3