蛮优秀的代码!!
看下这个怎么样
main()
{
char array[12]={0,1};
char temp1,temp2;
int i,j;
for(i=1;i<=10;i++){
for(j=1;array[j]!=0;j++)
{printf("%d ",array[j]);}
temp1=temp2=array[j];
for(j=1;j<=11;j++){
tem1=temp2;temp2=array[j];
array[j]=temp1+temp2;}
printf("\n");
}
}