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
What do you mean by global variables?
Can I uninstall microsoft c++ redistributable?
What is a tree in c++?
Using a smart pointer can we iterate through a container?
Can manipulators fall in love?
What are smart pointers?
What is vector processing?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
Can we define a constructor as virtual in c++?
What are the characteristics of friend functions?
What is #include iostream?
what are the characteristics of Class Members in C++?
What does return 0 do in c++?
What is binary search in c++?
Does there exist any other function which can be used to convert an integer or a float to a string?