Difference between char* and const char*?

What’s the difference between

char* name

which points to a constant string literal, and

const char* name

9 Answers
9

Leave a Comment