In C++ I can declare a reference to a pointer. Can I not also declare a pointer to a reference? Why or How?

No, you cannot. It is explicitly stated in C++ spec that pointers to references are prohibited.

No comments: