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 #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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!