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

Download this file

19 lines (15 with data), 139 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18

void func()
{
	c++;
	++c;
	c--;
	--c;

	p = *(p++);
	p = *(++p);
	p = *(p--);
	p = *(--p);

	p = *p++;
	p = *++p;
	p = *p--;
	p = *--p;
}