Any help with how to replace an instance of a character in the array with the first character of the array would be greatly appreciated :)
sentenceHolder1[i] = sentenceHolder2[0];
will replace a character in sentenceHolder1 with the first charcter in sentenceHolder2.
>>Yea I wasn't planning on handing that part in, my prof just suggested in one of our classes that it
>>was possible and I was wondering how you could do it because he won't tell me.
Yes it is possible. Hint: strstr() from string.h is your friend when working with charcter arrays. There are better ways when using c++ std::string class, but you probably have not gotton to those in your class.