mirror of
https://github.com/frida/tinycc
synced 2024-12-22 13:12:34 +03:00
10 lines
133 B
C
10 lines
133 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define T(a,b,c) a b c
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("%d", T(1,+,2) T(+,,) T(,2,*) T(,7,) T(,,));
|
||
|
return 0;
|
||
|
}
|