修改链表程序中出现的错误
建立一个三个结点的链表,存放学生数据。 为简单起见, 我们假定学生数据结构中只有学号和年龄两项。可编写一个建立链表的函数creat。程序如下:
#include"malloc.h"
#include"stdio.h"
#define NULL 0
#define TYPE struct stu
#define LEN sizeof (struct stu)
void main()
{
struct stu
{
int num;
int age;
struct stu *next;
};
TYPE *creat(int n)
{
struct stu *head,*pf,*pb;
int i;
for(i=0;i<n;i++)
{
pb=(TYPE*) malloc(LEN);
printf("input Number and Age\n");
scanf("%d%d",&pb->num,&pb->age);
if(i==0)
pf=head=pb;
else
pf->next=pb;
pb->next=NULL;
pf=pb;
}
return(head);
}
}
错误如下:
--------------------Configuration: hahaa - Win32 Debug--------------------
Compiling...
hn.cpp
hn.cpp(15) : error C2601: 'creat' : local function definitions are illegal
Error executing cl.exe.
hahaa.exe - 1 error(s), 0 warning(s)
求解决方法,对象就是creat函数在main函数前没有声明,偶在最上面加了个TYPE *creat(int n);再调试时就出现了
六个错误,真的不知道如何做了,高手帮忙解决一下这个问题。修改后要求调试没有错误.