[52cec0]: / test / stmt-for.c  Maximize  Restore  History

Download this file

9 lines (7 with data), 59 Bytes

1
2
3
4
5
6
7
void func()
{
for (i=0; i < 5; i++)
{
x = x / 2;
}
}