填空题

以下程序的输出结果是______。
# include <stdio.h>
# define N 3
# define M(n) (N+1) *n
main()
int x;
x=2*(N+M(2));
printf("%d\n", x);


【参考答案】

V