const char* p is a pointer to const char .
char const* p is a pointer to char const .
Since const char and char const one and the same, then the same.
However, consider:
char * const p is a const pointer for a (not const) char. That is, you can change the actual char, but not the pointer pointing to it.
phimuemue
source share