you declared function char getString(char *,char);. when you call getString (array[CHAR_SIZE], sentence); compiler tries to find a char getString(char *,char);, but it does not exist. you defined char *getString(char *, int) instead.
Thanks, i've tried to fix it and now when i debug the program; the prompt come up which's "the number of sentences to enter" and when i type a number, the program crash and i've this message: Run-Time Check Failure #2 - stach around the variable array was corrupted.
how do you think i can correct this;