单项选择题

以下程序运行后的输出结果是
fun(int x,int y,int z) z=x*y;
main( )
int a=4,b=2,c=6;
fun(a,b,c);
printf("%d",c);

A.16
B.6
C.8
D.12