相关试题
单选题 类的定义中成员默认的访问权限是( )。
单选题 下列关于设置缺省参数值的描述中,正确的是( )。
单选题 若有以下定义,则对数组元素的正确引用是( )。 int a[5],*p=a;
单选题 若有以下定义,下列说法错误的是( )。 struct person { int num; char name[10]; float score[3]; }wang;
单选题 若有定义:int a=7;float x=2.5,y=4.7;则表达式x+a%3*(int)(x+y)%2/4的值是( )。
单选题 下列程序的运行结果为( )。 char str[ ]= "abc",*p=str; cout<<*(p+2);
单选题 下列对字符数组s初始化错误的是( )。
单选题 下列哪些情况适合使用内联函数( )。