早教吧 育儿知识 作业答案 考试题库 百科 知识分享

设structstudent{intno;charname[12];floatscore[3];}sl,*p=&sl;用三种方法给sl的成设structstudent{intno;charname[12];floatscore[3];}sl,*p=&sl;用三种方法给sl的成员name赋值“sunplus”的语

题目详情
设 struct student { int no; char name[12]; float score[3]; } sl,* p = &sl; 用三种方法给sl的成

struct student
{
int no;
char name[12];
float score[3];
} sl,* p = &sl;
用三种方法给sl的成员name赋值 “sunplus”的语句是:_______、________、________
▼优质解答
答案和解析
memcpy(sl.name, "sunplus", 7);
memcpy(p->name, "sunplus", 7);
strcpy(sl.name, "sunplus");