有以下程序Vlvoid swap1(int c0[],int c1[])
{ int t;
t=c0[0];c0[0]=c1[0];c1[0]=t;
}
void swap2(int *c0,int *c1)
{ int t;
t=*c0;*c0=*c1;*c1=t;
}
main()
{ int a[2]={4,6},b[2]={4,6};
swap1(a,a+1);swap2(&b[0],&b[1]);
printf(''%d %d %d %d\n'',a[0],a[1],b[0],b[1]);}
程序运行后的输出结果是( )。