mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-19 05:30:07 +08:00
12 lines
191 B
C
12 lines
191 B
C
|
extern int printf(const char *format, ...);
|
||
|
#define P ++
|
||
|
#define n(x) x
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int a = 0, b = -1;
|
||
|
int i1 = a P+P b;
|
||
|
printf("i1 = %d\n", i1);
|
||
|
return n(0x1e)n(-1);
|
||
|
}
|