Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Identify the correct sentence regarding inequality between reference and pointer.

a) we can not create the array of reference
b) we can create the Array of reference
c) we can use reference to reference
d) we can use variable

Answer: a
Explanation: It is not allowed in C++ to make an array of references. To test check following array:
int &arr[] = {&a, &b, &c};
This will give an error.

Join The Discussion