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
Difference between declaration and definition of a variable.
What is a friend function in c++?
What is the use of map in c++?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
Write a c program for binary addition of two 8 bit numbers.
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?
What is purpose of new operator?
What is object in c++ example?
What is a storage class? Mention the storage classes in c++.
What are structures and unions?
What is a stack c++?
What is a buffer c++?
What is else syntax in c++?
What does it mean to declare a member function as static?
What is #include cstdlib in c++?