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 is the role of C++ shorthand's?
what is VOID?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
Does a derived class inherit or doesn't inherit?
How long does it take to get good at leetcode?
What is a sequence in c++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is the function to call to turn an ascii string into a long?
How delete [] is different from delete?
Is ca high or low level language?
What is a static element?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is the basic difference between C and C++?
Can static member variables be private?
How do I tokenize a string in c++?