#define <宏名> <字符串> 例: #define N 2+2 //预处理时:将程序中N的地方用2+2代替
(2) 带参数的宏定义:
#define <宏名> (<参数表>) <宏体> 例: #define A(x) x
-----以上为宏定义--------
注意: