Question: Need help with the following: Complete the function to replace any period by an exclamation point. Ex: Hello. I'm Miley. Nice to meet you. becomes:
Need help with the following: 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 #include using namespace std; void MakeSentenceExcited(char* sentenceText) { /* Your solution goes here */ } int main() { const int TEST_STR_SIZE = 50; char testStr[TEST_STR_SIZE]; strcpy(testStr, "Hello. I'm Miley. Nice to meet you."); MakeSentenceExcited(testStr); cout << testStr << endl; return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
