[fc78f7]: / test / expr-brackets.c  Maximize  Restore  History

Download this file

8 lines (6 with data), 69 Bytes

1
2
3
4
5
6
7

void func()
{
	a = b * (c + d) * e;
	a = b * (++c);
	a = b * ++c;
}