C++中编程出现function does not take 1 parameters

#include"stdio.h"#include"stdlib.h"#defineNULL0structnode{intnum;structnode*next;};vo... #include "stdio.h"
#include "stdlib.h"
#define NULL 0

struct node
{
int num;
struct node *next;
};

void main()
{
struct node *creat();
void print();
struct node *head;
head=NULL;
head=creat(head);
print(head);
}

struct node *creat(struct node *head)
{
struct node *p1,*p2;
p1=p2=(struct node *)malloc(sizeof(struct node));
scanf("%d",p1->num);
p1->next=NULL;
while(p1->num!=0)
{
if(head==NULL) p1=head;
else
p2->next=p1;
p2=p1;
p1=(struct node *)malloc(sizeof(struct node));
scanf("%d",&p1->num);
}
p2->next=NULL;
return head;
}

void print(struct node *head)
{
struct node *temp;
temp=head;
while(temp!=NULL)
{
printf("%6d",temp->num);
temp=temp->next;
}
}

出现的问题是:
error C2660: 'creat' : function does not take 1 parameters
error C2660: 'print' : function does not take 1 parameters
展开
 我来答
CraftinA
2009-01-20 · TA获得超过573个赞
知道小有建树答主
回答量:300
采纳率:0%
帮助的人:295万
展开全部
struct node *creat();
void print();
函数声明和定义不一致,参数类型和个数是要一致的,改成这么声明
struct node *creat(struct node *head);
void print(struct node *head);
Roxxette
2009-01-20 · TA获得超过828个赞
知道小有建树答主
回答量:1341
采纳率:0%
帮助的人:824万
展开全部
struct node *creat(); 这句是对create的声明,应该写成
struct node *creat(struct node*); 并且放到main函数前面
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
我不懂但可以装
2009-01-20
知道答主
回答量:19
采纳率:0%
帮助的人:0
展开全部
这两个函数 你都没跟参数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式