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
Explain operator overloading.
What is struct c++?
What are the rules about using an underscore in a c++ identifier?
What does I ++ mean in c++?
Is c++ a good first language to learn?
Is c++ slower than c?
What is expression parser in c++
Do class method definitions?
What are the vectors in c++?
Are strings immutable in c++?
What language does google use?
Can we distribute function templates and class templates in object libraries?
What are pointer-to-members in C++? Give their syntax.
What is c++ stringstream?
Why is c++ still best?