I am going over C and have a question regarding const usage with pointers. I understand the following code:
const
const char *someArray
char * const array;
It means that the pointer is constant. Also,
const * const char array;
means a constant pointer to constant memory.