C语言预处理器——标记粘贴运算符(##)

就是连接连个标记的运算符,abc和def两个标记连接成一个abcdef长的标记。

#include 

#define tokenpaster(n) printf ("token" #n " = %d\n"

你可能感兴趣的:(C语言,c语言)