#include <stdio.h>
main ()
{ int a[]={1,2,3,4,5,6},*k[3],i=0;
while ( i<3 )
{ k[i]=&a[2*i];
printf ( " %d " ,*k[i] ) ;
i++;
}
程序运行后的输出结果是 ( 10 ) 。