00001 #define M(x) M ## x 00002 #define MM(M,y) M = # y 00003 00004 int main() { 00005 int A, B; 00006 M(M) (A,B); 00007 return 0; 00008 }