2024-10-06 19:58:11 +02:00

14 lines
135 B
C

#include "printlib.h"
int main()
{
int x;
x = 0;
while (x < 4)
{
x = x + 1;
}
return 0;
}
// EXPECTED