C语言程序停止工作,输入-1时程序就会出错。。。代码在下面,求解答
typedefstructnode{intdata;structnode*next;}node;#include<stdio.h>#include<stdlib.h>vo...
typedef struct node
{
int data;
struct node *next;
}node;
#include <stdio.h>
#include <stdlib.h>
void intiate(node *h);
int main()
{
node *m;
intiate(m);
printf("%d",m->next->data );
return 0;
}
void intiate(node *h)
{
node *p,*s;
(s)=(node*)malloc(sizeof(node));
h=s;
(h)->next =NULL;
int x;
p=(h);
printf("please input data in turn:");
scanf("%d",&x);
for(;x!=-1;scanf("%d",&x))
{
s=(node*)malloc(sizeof(node));
s->data=x;
p->next =s;
p=s;
}
p->next=NULL;
p=(h)->next;
printf("%d",h->next->data );
} 展开
{
int data;
struct node *next;
}node;
#include <stdio.h>
#include <stdlib.h>
void intiate(node *h);
int main()
{
node *m;
intiate(m);
printf("%d",m->next->data );
return 0;
}
void intiate(node *h)
{
node *p,*s;
(s)=(node*)malloc(sizeof(node));
h=s;
(h)->next =NULL;
int x;
p=(h);
printf("please input data in turn:");
scanf("%d",&x);
for(;x!=-1;scanf("%d",&x))
{
s=(node*)malloc(sizeof(node));
s->data=x;
p->next =s;
p=s;
}
p->next=NULL;
p=(h)->next;
printf("%d",h->next->data );
} 展开
1个回答
展开全部
//仅供参考
typedef struct node
{
int data;
struct node *next;
}node;
#include <stdio.h>
#include <stdlib.h>
node* intiate(node *h);//返回指针
int main()
{
node *m;
m = intiate(m);
printf ("\nout\n");
printf("%d",m->next->data );
return 0;
}
node* intiate(node *h)
{
node *p,*s;
(s)=(node*)malloc(sizeof(node));
h=s;
(h)->next =NULL;
int x;
p=(h);
printf("please input data in turn:");
scanf("%d",&x);
for(;x!=-1;scanf("%d",&x))
{
s=(node*)malloc(sizeof(node));
s->data=x;
p->next =s;
p=s;
}
p->next=NULL;
p=(h)->next;
printf("%d",h->next->data );
return h;//返回h
}
可能是由于这些都是局部变量,没有返回的话,在函数退出后空间被回收。
更多追问追答
追问
但是我的intiate函数不是用指针操作吗,操作h应该和操作主函数中的m一样啊??
但是我的intiate函数不是用指针操作吗,操作h应该和操作主函数中的m一样啊??
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询