设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。
设charx='a';则printf("x=%c,y=%cn",x,97);的输出是()
main()函数可以带两个形参,一般分为argc和argv,其中argv可以定义为()
设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。
表达式a=1,a+=1,a+1,a++的值是____________。