填空题

下面程序的输出结果是______。
#include<iostream.h>
void main()
inta[6]=1,2,3,4,5,6;
for(int i=0;i<5;i++)
cout<<a[i]<<““;
cout<<endl;

【参考答案】

1 2 3 4 5。