void 问题请教
各位大侠 下面我代码的一段。 帮看看那个地方有错误。 我那些地方没有理解清楚。谢谢各位。#include"stdio.h"
#include"malloc.h"
#define LEN sizeof(struct student)
int n;
struct student
{
long num;
float score;
struct student * next;
};
struct student a;
void main()
{
struct student * p;
struct student * creat();
void print(struct student * head);
p=creat(void);
print(p);
}
struct student * creat(void)
{
struct student * head;
head=&a;
retrun(head);
}
报错类型
[root@localhost temp4]# gcc -o c6 c6.c
c6.c: 在函数‘main’中:
c6.c:17: 错误:expected expression before ‘void’