Answer Posted / o saienni
You cannot have a pointer to a reference.
In other words
int &* isn't allowed.
using:
int nArray[3];
The variable nArray is infact a pointer to an array or an
int pointer and the [] will find the offset within that
array. So an array of references will be a pointer to a
reference and this is why it's not allowed.
Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Is there any difference between int [] a and int a [] in c++?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Write about the access privileges in c++ and also mention about its default access level?
What is fixed in c++?
What is the purpose of templates in c++?
What is tellg () in c++?
program explaining feautures of c++
What is c++ stringstream?
What is a node class in c++?
What is meaning of in c++?
Explain unexpected() function?
What is math h in c++?
What is the keyword auto for?
What is stl containers in c++?
Using a smart pointer can we iterate through a container?