用dev c++写以下程序,为什么能编译,但运行时显示“源文件未编译”
#include"constant.h"#defineLIST_INIT_SIZE100#defineCREATSE10typedefstruct{char*elem;i...
#include "constant.h"
#define LIST_INIT_SIZE 100
#define CREATSE 10
typedef struct{
char *elem;
int length;
int listsize;
}Sqlist;
Status InitList(Sqlist *L){
L->elem=(char*)malloc(LIST_INIT_SIZE*sizeof(char));
if(!L->elem) exit(OVERFLOW);
L->length=0;
L->listsize=LIST_INIT_SIZE;
return OK;
} 展开
#define LIST_INIT_SIZE 100
#define CREATSE 10
typedef struct{
char *elem;
int length;
int listsize;
}Sqlist;
Status InitList(Sqlist *L){
L->elem=(char*)malloc(LIST_INIT_SIZE*sizeof(char));
if(!L->elem) exit(OVERFLOW);
L->length=0;
L->listsize=LIST_INIT_SIZE;
return OK;
} 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询