CAP/MiniC/TP04/tests/provided/dataflow/df05.c

14 lines
135 B
C
Raw Permalink Normal View History

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