定义一个空的顺序表,求助
#define ListSize 100typedef int ElemType;
typedef struct
{
ElemType *elem;
int length;
}SeqList;
void InitList(SeqList *L)
{
L->elem=(ElemType *)malloc(sizeof(ElemType)*ListSize);
if(L->elem==NULL)
{
printf("malloc failure!\n");
exit(1);
}
L->length=0;
}
用win-tc编译,这是定义函数的一部分,但总是提示出错,请教大家