mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-03 04:30:08 +08:00
11 lines
151 B
C
11 lines
151 B
C
#define CAT2(a,b) a##b
|
|
#define CAT(a,b) CAT2(a,b)
|
|
#define AB(x) CAT(x,y)
|
|
|
|
int main(void)
|
|
{
|
|
int xy = 42;
|
|
printf("%d\n", CAT(A,B)(x));
|
|
return 0;
|
|
}
|