1.

Difference between const char* p and char const* p?

Answer»
  • 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.



Discussion

No Comment Found