C++ Programming and Technical

What is the difference between a pointer and a reference?

Read Solution (Total 1)

C++ Other Question

Is there any problem with the following : char*a=NULL; char& p = *a;? What is the difference between const char *myPointer and char *const myPointer?