Question: 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
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 void MakeSentenceExcited(char* sentenceText) { /* Your solution goes here */ for(i=0;i < str (sentenceText); i++) { if(sentenceText[] } int main(void) { const int TEST_STR_SIZE = 50; char testStr[TEST_STR_SIZE]; strcpy(testStr, "Hello. I'm Miley. Nice to meet you."); MakeSentenceExcited(testStr); printf("%s", testStr); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
