下列表达式,能将P声明为指向常量的指针的是()
下列语句错误的是()
使用关键字const修饰的数据成员称为( )数据成员。
在C++函数的形参前加const关键字,是为了提高函数的( )。
#include<iostream.h> main ( ){ int x=5,y=6; const int *p=&x; *p=y; cout<<*p<<endl; }
#include<iostream.h> main(){ int x=5,y=6; const int*p=&x; *p=y; cout<<*p<<endl;
#include < iostream, h > void main() { int x =5; const int * const p = &x; * p =88; cout << * p << endl; }
#include<iostream> using namespace std; _______________pi=3.14159; void main() { double r; cout<<"r="; ________________; double l=2.0*pi*r; double s=pi*r*r; cout<<"\n The long is:"<
#include < iostream. h > main( ) { int x =7; const int *p = &x; *p =99; cout << *p << endl; }
不能作为函数重载的判断依据的是( )
下列不是函数重载所要求的条件是( )
下列有关重载函数的说法中错误的是( )
下列有关重载函数的说法中正确的是( )