0 votes
in C Plus Plus by
Difference between const char* p and char const* p?

1 Answer

0 votes
by
  • const char* p is a pointer to a const char.
  • char const* p is a pointer to a char const.

Since const char and char const are the same, it's the same.

...