设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。
p->no=1234 ;或者 (*p).no=1234;
暂无解析
“20<x≤30”的C语言表达式是____________。
设charx='a';则printf("x=%c,y=%cn",x,97);的输出是()
在文件使用方式中,字符串"rb"表示()
输入一字符串(换行为结束标志)统计其中数字(0,1,2,…,9不单独统计)、空白和其它字符出现的次数。
设有定义语句:enumt1{a1,a2=7,a3,a4=15}time;则枚举常量a2和a3的值分别为()