Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions