这是什么错误啊!!!
#include <stdio.h>typedef struct linknode
{
char data;
struct linknode *next;
}node;
node *head;
int n=0;
void createlist()
{
node *p,*s;
char x;
int z=1;
head=new node;
p=head;
printf("\n\t\t建立一个线性表");
printf("\n\t\t说明:请逐个输入字符,结束标记为“x”!\n");
while (z)
{
printf("\t\t输入:");
scanf("%c",&x);
getchar();
if (x!='x')
{
s=new node;
n++;
s->data=x;
p->next=s;
s->next=NULL;
p=s;
}
else z=0;
}
}
一直出现这个错误(LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main),是我的代码有问题,还是?