CAP/MiniC/TP04/tests/provided/step1/test_vars.c

21 lines
221 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
int x, y;
x = 42;
y = 66;
println_int(x + y);
x = 1;
println_int(x + y);
y = 2;
println_int(x + y);
return 0;
}
// EXPECTED
// 108
// 67
// 3