单项选择题

下面的程序的结果是 main( ) {int x=3,y=0, z=0; if(x=y+z)cout<<"* * * *"; else cout<<"####"; }

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