设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。
p->no=1234 ;或者 (*p).no=1234;
暂无解析
在文件使用方式中,字符串"rb"表示()
设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。