为什么不能够执行?
#include "stdafx.h"#include "stdio.h"
#include "stdlib.h"
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
typedef struct//这里在VC6.0里面执行为什么是不能够执行,总是有错误
{
ElemType *elem;
int length;
int listsize;
}SqList;
int main(int argc, char* argv[])
{
return 0;
}