單項選擇題執(zhí)行C++語句:int x,*y =&x;則下列關于y的描述中錯誤的是()。

A.y中保存了x的內存地址
B.y是一個int型指針變量
C.y是x的引用
D.y指向變量x


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題已定義數組:int a[100];下列哪條語句能將數組a的所有元素都賦值為10?()

A.a[0]=a[1]=......=a[99]=10;
B.for (int n =99;n >=0;n--)a[n]=10;
C.a[0~99]=10;
D.for (int n =1;n

2.單項選擇題C++語言表達式:5%2+2.0,該表達式結果的數據類型和值分別是()。

A.double類型,3.5
B.int類型,4
C.double類型,3.0
D.double類型,4.0

3.單項選擇題下列定義常變量x的語句中,正確的是()。

A.const int x;
B.const x 10;
C.const int x =10;
D.#define x 10

5.單項選擇題下列哪個函數不能被其它源程序文件中的函數調用?()

A.int fun(int x){......}
B.extern int fun(int x){......}
C.void fun(int x){......}
D.static int fun(int x){......}