#include #define W 3 #define L W+4 int main() { int a; a=L*L; printf("%d\n",a); }
这输出结果是19啊?
a=L*L // 它会被替换为 a = 3 + 4 * 3 + 4 = 3 + 12 + 4 = 19