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

16 lines
153 B
C
Raw Normal View History

2024-10-08 08:39:14 +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