ashleam421 ashleam421 01-06-2023 Computers and Technology contestada What does this function do? void myfun(const string& word) { if (word.size() == 0) return; myfun(word.substr(1)); cout << word[0]; }