Question: CHALLENGE ACTIVITY 6.10.2: Modify a string parameter. Complete the function to replace any period by an exclamation point. Ex: Hello. I'm Miley. Nice to meet
CHALLENGE
ACTIVITY
6.10.2: Modify a string parameter.
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(char* sentenceText) {
/* Your solution goes here */
}
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; }
WANT IN C PROGRAMMING
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
