CAP/MiniC/TP03/tests/provided/uninitialised/float.c

13 lines
148 B
C
Raw Normal View History

2024-09-29 09:58:25 +02:00
#include "printlib.h"
int main() {
float x;
println_float(x);
x = x + 1.0;
println_float(x);
return 0;
}
// EXPECTED
// 0.00
// 1.00