A. ) const int buffer=256;
B. ) const double *point;
C. ) int const buffer=256;
D. ) double * const point;
[单选题]下列语句中,错误的是 <br>A. . const int buffer=256; <br>B. . const int temp;<br>C. . const double *point ; <br>D. . const double *rt =new double(5.5);<br>
[单选题]对下列语句正确的描述是( )。const int *x; ∥(1)int *constx; ∥(2)A.语句(1)的含义是指针变量x不能更改B.语句(2)的含义是指针变量x所指向的不能更改C.语句(2)的含义是指针变量x不能更改D.语句(1)和(2)是相同含义的不同定义方式
[单选题]下列定义变量的语句中错误的是A.)int _int;B.)double int_;C.)char For;D.)float US$;
[单选题]已知:int n=10;那么下列语句中错误的是( )。A.int*p=new long[n];B.int p[n];C.int*p=new long(n);D.int p[10];
[单选题]已知:int n=10;那么下列语句中错误的是A.int*p=new long[n];B.int p[n];C.int*p=new long(n);D.int p[10];
[单选题]对于语句const int x=10;的描述正确的是( )。A.该语句不允许定义为int const x=10;B.在程序中可以重新对X赋值C.变量X不能使用+ +运算符D.const关键字只能用来修饰常量
[单选题]已知下列语句中的×和y都是int型变量,其中错误的语句是A.x=y++:B.x=++y;C.(x+y)++D.++x=y;
[单选题]已知下列语句中的x和y都是int型变量,其中错误的语句是( )。A.x=y++;B.x=++y;C.(x+ y)++D.++x=y;
[单选题]已知下列语句中的x和y都是int型变量,其中错误的语句是A.x=y++;B.x=++y;C.(x+y)++D.++x=y;
[单选题]下面结构体的定义语句中,错误的是A.)struct ord {int x;int y;int z;}; struct ord a;B.)struct ord {int x;int y;int z;} struct ord a;C.)struct ord {int x;int y;int z;} a;D.)struct {int x;int y;int z;} a;