c**********e 发帖数: 2007 | 1 Line 1: int i=5;
Line 2: int& k=i;
Line 3: const int* m;
Line 4: int const* n;
Line 5: int*& o=8;
Line 6: const int*& p=m;
Line 7: int&& q=k;
Referring to the code above, which line or lines fail to compile?
(Multiple choice with 2 correct answers)
1
2
3
4
5
6
7 | d*****d 发帖数: 46 | 2 57
【在 c**********e 的大作中提到】 : Line 1: int i=5; : Line 2: int& k=i; : Line 3: const int* m; : Line 4: int const* n; : Line 5: int*& o=8; : Line 6: const int*& p=m; : Line 7: int&& q=k; : Referring to the code above, which line or lines fail to compile? : (Multiple choice with 2 correct answers) : 1
|
|