Alan_Zhao
2017-12-14 17:08
老是无法新建。
#include <stdio.h>
#include<stdlib.h>
//#include<malloc.h>
#define Maxsize 100
typedef int ElemType;
typedef struct
{
ElemType data[Maxsize];
int length;
}SqList;
SqList *init_SqList()
{
SqList * L;
L=(SqList *)malloc(sizeof (SqList));
if(!L) exit(1);
L->length=0;
return L;
}
C语言入门
926028 学习 · 20793 问题
相似问题