单项选择题

程序的输出结果是()int func (int a,int b){int c;c=a+b;return c;}main(){int x=6,y=7,z=8,r;r=func(x+y,z);printf("%d\n",r);}

A.11
B.20
C.31
D.21