[a3652e]: / test / stmt-while.c  Maximize  Restore  History

Download this file

9 lines (7 with data), 52 Bytes

1
2
3
4
5
6
7
void func()
{
while (x < 10)
{
x = x / 2;
}
}