#define MERGE(_X, _Y) (_X##_Y) int z = MERGE(1,2);
CString strInfo; strInfo.Format("%d, %s", MERGE(1,2), MERGE("a","b")); MessageBox(strInfo);