c语言结构体的问题 ,为什么编译时都没问题,运行后一输入字母就出错,这是为什么? 10
#include<stdio.h>structlist{charb[10];inta[10];};voidmain(void){structlist*p;scanf("%...
# include<stdio.h>
struct list
{
char b[10];
int a[10];
};
void main(void)
{
struct list * p;
scanf("%s", (*p).b);
printf("%s", (*p).b);
我感觉和下面的差不多的啊,下面的就没问题
# include<stdio.h>
struct list
{
char b[10];
int a[10];
};
void main(void)
{
struct list p;
scanf("%s", p.b);
printf("%s", p.b);
}
求大神指教,万分感谢! 展开
struct list
{
char b[10];
int a[10];
};
void main(void)
{
struct list * p;
scanf("%s", (*p).b);
printf("%s", (*p).b);
我感觉和下面的差不多的啊,下面的就没问题
# include<stdio.h>
struct list
{
char b[10];
int a[10];
};
void main(void)
{
struct list p;
scanf("%s", p.b);
printf("%s", p.b);
}
求大神指教,万分感谢! 展开
1个回答
展开全部
struct list *p;
这句话声明了一个指针变量p,指向未知的变量
需要注意的是,C语言中指针在使用之前必须初始化的,否则就成了野指针,其指向无法确定。
修改后代码如下:
# include<stdio.h>
struct list
{
char b[10];
int a[10];
};
void main(void)
{
struct list n;
struct list *p;
p = &n;
scanf("%s", (*p).b);
printf("%s", (*p).b);
}
VS2017测试通过。答题不易,正确请采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询