主题:麻烦懂的人给讲一下 关于初始化的问题
#include<stdio.h>
#include<stdlib.h>
typedef struct sqlist{
int arry[100];
int length;
}SqList;
int main()
{
int m;
SqList L;
[color=FF0000] L.arry[]={3,4,5,6};[/color] 这样初始化错在哪里呢?
for(m=0;m<4;m++)
printf("%3d",L.arry[m]);
system("pause");
return 0;
}
#include<stdlib.h>
typedef struct sqlist{
int arry[100];
int length;
}SqList;
int main()
{
int m;
SqList L;
[color=FF0000] L.arry[]={3,4,5,6};[/color] 这样初始化错在哪里呢?
for(m=0;m<4;m++)
printf("%3d",L.arry[m]);
system("pause");
return 0;
}