单项选择题

以下程序运行后的输出结果是 #include<stdio.h> #define SUB(a)(a)-(a) main() { int a=2, b=3, c=5, d; d=SUB(a+b)*e; printf("%d\n", d); }

A.0
B.-12
C.-20
D.10