I am a beginner to c++. The below code snippet is taken from a program for parsing text input.
const int MAX_CHARS_PER_LINE = 512;
const int MAX_TOKENS_PER_LINE = 20;
const char* const DELIMITER = ",";
I couldn't find a reason for why the programmer used const pointer for variable DELIMITER, as he didn't use const pointer for other variables. Please clarify.