单项选择题

以下语句段执行后的输出结果是( )。
#include<stdio.h>
main()
int k=3;
if(k)
printf("###")
else
printf("&&&&");

A.###
B.&&&&
C.###&&&&
D.有语法错误,不能执行