单项选择题

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

A、 8
B、 9
C、 17
D、 20