#include <stdio.h> #define SOR(x) (x*x) main() { int a,b=3; a=SOR(b+2); printf("%d",a); } 输出为11而不是25 SOR(b+2)=b+2*b+2 而不是(b+2)*(b+2)