初始化值是0.618的双精度变量a的定义形式为____________。
double a=0.618
暂无解析
设inta[2][3]={{2},{3}};则数组元素____________的值为3。
输入一字符串(换行为结束标志)统计其中数字(0,1,2,…,9不单独统计)、空白和其它字符出现的次数。
设charstring[]="This_is_a_book!";则数组的长度应是____________。
设intx[]={1,2,3,4,5,6},*p=x;则值为3的表达式是()
设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。