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

Download this file

9 lines (7 with data), 52 Bytes

1
2
3
4
5
6
7
8

void func()
{
	while (x < 10)
	{
		x = x / 2;
	}
}