mirror of
https://github.com/frida/tinycc
synced 2024-11-24 16:49:44 +03:00
15 lines
247 B
C
15 lines
247 B
C
#include <stdio.h>
|
|
|
|
#define P(A,B) A ## B ; bob
|
|
#define Q(A,B) A ## B+
|
|
|
|
int main(void)
|
|
{
|
|
int bob, jim = 21;
|
|
bob = P(jim,) *= 2;
|
|
printf("jim: %d, bob: %d\n", jim, bob);
|
|
jim = 60 Q(+,)3;
|
|
printf("jim: %d\n", jim);
|
|
return 0;
|
|
}
|