[Solved] How to delete all elements that has a vowel in an array [C++]
You are getting blanks because you are not actually removing any characters from your array, you are just replacing them will nulls, and then not ignoring the nulls when outputting the contents of the array. Instead of doing the removal manually, consider using the standard std::remove_if() algorithm, which can move any vowels to the end … Read more