const char numm = 11;
typedef char* pstring;
const pstring cstr = &numm; //Error
I learned this from C++ Primer, but it didn't quite clarify it for me. Here is a code example.
const char numm = 11;
typedef char* pstring;
const pstring cstr = &numm; //Error
I learned this from C++ Primer, but it didn't quite clarify it for me. Here is a code example.