填空题

以下程序的输出结果是 [12] 。 #include #define N 3 #define M(n) (N+1)*n main() { int x; x = 2 * (N + M(2)); printf("%d\n", x); }

【参考答案】

22