I wrote the following code:
void buildArrays(char *pLastLetter[],int length[], int size, const char str[]) { int i; int strIndex = 0; int letter
str is const, pLastLetter isn't. It's saying the const qualifier is discarded if you do this.