[7d5e91]: / test / stmt-do-while.c  Maximize  Restore  History

Download this file

8 lines (6 with data), 55 Bytes

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