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 does std :: flush do?
What are the various operations performed on stack?
Which ide is best for c++?
what is the use of void main() in C++ language?
Is std :: string immutable?
Which software is best for coding?
What's the order in which the local objects are destructed?
What happens when the extern "c" char func (char*,waste) executes?
Is it possible to use a new for the reallocation of pointers ?
What you know about structures in C++?
Define a nested class. Explain how it can be useful.
What is a sequence in c++?
Write a program which uses functions like strcmp(), strcpy()? etc
What is the use of class in c++?
What is const pointer and const reference?