CAP/MiniC/TP04/tests/provided/step2/test05.c

13 lines
123 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
int x,y;
x=3;
if (x<5) {
y=x+1;
}
return 0;
}
// EXPECTED