C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 rivejä
183 B

#include <stdio.h> // printf()
#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;
}