单项选择题

下面的程序ASCⅡ。
main()
int x=3,y=0,z=0;
if(x==y+z)
printf("****");
else
printf("####");

A.有语法错误不能通过编译
B.输出****
C.可以通过编译,但是不能通过连接,因而不能运行
D.输出####