运行以下的程序,输出结果为( )
#define M 3*2
#define N M+2
#define S(r) M*N*r/2
#include<stdio.h>
void main()
{
int a=4;
printf("%d",S(a));
}
96
144
22
40