单项选择题

执行下列程序的结果是( )。
#define N 5
#define H(x) ((N+2)*x)
main()
int a=2,b=3,C;
c=H(a+b);
printf("%d",c);

A.15
B.17
C.23
D.35