有以下程序 #include #define SUB(a) (a)-(a) main() { int a=2,b=3,c=5,d; d=SUB(a+b)*c; printf(“%dn”,d); } 程序运行后的输出结果是 点我阅读全文