单项选择题

执行下面程序中的输出语句后,a的值是( )。
#include <stdio.h>
main()
int a;
printf("%d\n",(a=3*5,a*4));

A) 15
B) 20
C) 10
D) 60