Question: C++ Program..... Complete the function to replace any period by an exclamation point. Ex: Hello. I'm Miley. Nice to meet you. becomes: Hello! I'm Miley!
C++ Program.....
Complete the function to replace any period by an exclamation point. Ex: "Hello. I'm Miley. Nice to meet you." becomes:
"Hello! I'm Miley! Nice to meet you!"
#include
void MakeSentenceExcited(string& sentenceText) {
/* Your solution goes here */
}
int main() { string testStr;
testStr = "Hello. I'm Miley. Nice to meet you."; MakeSentenceExcited(testStr); cout << testStr;
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
