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

16 lines
157 B
C
Raw Normal View History

2024-10-21 23:10:10 +02:00
#include "printlib.h"
int main() {
int x;
int y;
while (x < 5000) {
y = x+1;
x = y+1;
}
println_int(x);
return 0;
}
// EXPECTED
// 5000