I am aware of the following sequences :
const char*- mutable pointer to an immutable character/strinchar* const- an immutable pointer but the contents of location at which it points are mutable.const char* const- immutable pointer to an immutable character/string.char*- entirely permissive.
However are we supposed to interpret the following :
char const *
Is there a way to intuitively understand what 1 , 2 and the "new one" means - or we have to learn it by heart.