char *str = "Hello";
char *ptr = str;
char *&rptr = str;
What is the difference between ptr and rptr? I understand rptr is a reference to a pointer(in theory) but how does it differ in terms of implementation with ptr?
Are references in C++ implemented using pointers?
See Question&Answers more detail:os