单项选择题

有以下程序:
#include<stdio.h>
#define F(X,Y)(X)*(Y)
void main()
{
int a=3,b=4;
printf("%d\n",F(a--,++b));
}
程序运行后输出的结果是______。

A.8
B.10
C.12
D.15