网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
下面关于const指针的语句中,正确的是()。
A.int a=10; const int *p=&a; *p=20;
B.int a=10; int *const p= &a; *p=20;
C.int a=10, b=20; int *const p=&a; p=&b;
D.int a=10, b=20; const int *const p=&a; p=&b;
参考答案和解析
文件指针是程序中用FILE定义的指针变量
更多 “下面关于const指针的语句中,正确的是()。A.int a=10; const int *p=a; *p=20;B.int a=10; int *const p= a; *p=20;C.int a=10, b=20; int *const p=a; p=b;D.int a=10, b=20; const int *const p=a; p=b;” 相关考题
考题
下列语句中,错误的是______。A.const int buffer=256;B.const double*point;C.int const buffer=256;D.double*const point;
考题
( 18 ) 下列语句中,错误的是A ) const int buffer=256;B ) const double *point;C ) int const buffer=256;D ) double * const point;
考题
下列语句中错误的是( )。A.const int a;B.const int a=10;C.const int*point=0;D.const int*point=new int(10);
考题
在VB中,以下关于符号常量的声明正确的是 ( )A.Const TAG as StringB.Const TAG as String=&qu
在VB中,以下关于符号常量的声明正确的是 ( )A.Const TAG as StringB.Const TAG as String="Visual Basic"C.Public TAG as String="Visual"D.Dim TAG as String
考题
关于const常量定义,下面正确的使用方式是()
A.const Pi float64 = 3.14159265358979323846const zero = 0.0B.const (size int64 = 1024eof = -1 )C.const (ERR_ELEM_EXIST error = errors.New("element already exists")ERR_ELEM_NT_EXIST error = errors.New("element not exists"))D.const u, v float32 = 0, 3 const a, b, c = 3, 4, "foo"
考题
要禁止修改指针p本身,又要禁止修改p所指向的数据,这样的指针应定义为( )。
A.const char *p=”ABCD”;B.char const *p=”ABCD”;C.char *const p=”ABCD”;D.const char *const p=”ABCD”;
考题
下列语句中,错误的是( )。A.const int buffer:256;B.const int temp;C.const double*point;D.const double*rt=new double(5.5);
考题
对下列语句正确的描述是( )。 const int *x; int *const x;A.语句1的含义是指针变量x不能更改B.语句2的含义是指针变量x所指向的值不能更改C.语句2的含义是指针变量x不能更改D.语句1和语句2含义是相同的
考题
下面的语句中错误的是A.int a=5;int x[a] ;B.const int a=5;int x[a] ;C.int n=5;int * p=new int[a] ;D.const int n=5;int * p=new int[a] ;
考题
对下列语句正确的描述是( )。 const int*x; //(1) int*const X; //(2)A.语句(1)的含义是指针变量x不能更改B.语句(2)的含义是指针变量x所指向的不能更改C.语句(2)的含义是指针变量x不能更改D.语句(1)和(2)是相同含义的不同定义方式
考题
下面的语句中错误的是( )。A.int a=5;int x[a];B.eonst int a=5;int x[a];C.int n=5;int *P=new int[a];D.const int n=5;int *p=new int[a];
考题
下列语句中,错误的是( )。A.const int buffer=256;B.const double*point;C.int const buffer=256;D.double*eonst point:
考题
下面的语句中错误的是( )。A.int a=5;int x[a];B.const int a=5;int x[a];C.int n=5;int *p=new int[n];D.const int n=5;int *p=new int[a];
考题
在下列的标识符常量的定义语句中,错误的定义语句是()。A、const double PI=3.14159;B、const int N=20;C、const char ch;D、const bool mark=true;
考题
单选题下列语句中,错误的是( )。A
const int buffer=256;B
const double*point;C
int const buffer=256;D
double*const point;
考题
判断题const char *p说明了p是指向字符串常量的指针。A
对B
错
热门标签
最新试卷