int main(void)
The main entry point of the program.
void addExclamation(std::string &s)
A helper function that adds an exclamation mark to a string.
void iter(T *array, size_t length, void(*f)(T &))
Applies a function to each element of an array. This version is for non-const arrays and allows modif...