Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given these definitions:
int i{-1};int const i2{i};
int i{-1};
int const i2{i};
which of the following definitions are illegal?
int * const pi5{&i};
const int * pi1{&i};
int * const pi2{&i2};
int *pi{&i};
int *pi4{&i2};
int const * const pi3{&i2};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!