constchar* is a pointer to an array of chars, or a pointer to a char where the thing pointed to is const.
The first element is inputString[0].
The second element is inputString[1].
and so on.
The reason why it may point to a single char or the start of an array is an accident in C that we all have to live with. There is a reason but it's beyond the scope of the question.