define是一个预处理指令
#define add(x,y) ((x)+(y)) //后面这个表示表达,不只是包含常量 int main() { printf("%d\n", 4 * add(3, 3)); return 0; }