C语言往结构体变量赋值为什么会出现error C2106: '=' : left operand must be l-value

#include<stdio.h>structStudent{intnum;charname[10];structStudent*next;};intmain(){str... #include <stdio.h>

struct Student
{
int num;
char name[10];

struct Student *next;
};

int main()
{
struct Student *head,*p;
struct Student a,b,c;

a.num=1001; a.name="Li";
b.num=1002; b.name="Wang";
c.num=1003; c.name="Zhang";

head=&a;

a.next=&b;
b.next=&c;
c.next=NULL;

p=head;

do
{
printf("num=%d name=%s\n",p->num,p->name);
p=p->next;
}while(p);
return 0;
}
展开
 我来答
风若远去何人留
2017-04-05 · 知道合伙人互联网行家
风若远去何人留
知道合伙人互联网行家
采纳数:20412 获赞数:450133
专业C/C++软件开发

向TA提问 私信TA
展开全部

定义的name为字符数组

char name[10];

也就是字符串。 不能直接=赋值。所以

a.name="Li";
b.name="Wang";
c.name="Zhang";

这几个是错的。 

改成 strcpy

strcpy(a.name,"Li");
strcpy(b.name,"Wang");
strcpy(c.name,"Zhang");
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式