1- Write a function that takes a word less than 25 characters long and returns the letter that word starts with (in capital letters). Frank starts vith the letter F. 2- Write a function that has a string as formal parameter. The function then replaces all spaces and punctuation marks in the string with the asterisk (*). Here is a sample run: Nothing is impossible, the word itself says 'I'm possible'! Nothing*is*impossible**the*word*itself*says**I*m*possible** 3- Write a function that takes as input one line and reverses the words of the line. For example, birds and bees Reversed: bees and birds 4- Write a function that takes nouns (a string) as inputs and forms their plurals based on these rules: a. If noun ends in "Y, remove the "y" and add "ies". b. If noun ends in "s","ch", or "sh", add "es". c. In all other cases, just add "s". (Test on the following: chair dairy boss circus fly dog church clue dish) chairs dairies bosses circuses flies dogs churches clues dishes Now create the driver program, - Ask the user for their first and last name. Store the names in separate arrays. Greet the user by their full names. Let them know what their initials are by calling the function in part 1. Ask them to input their favorite quote. Call function in part 2 to change the quote. Now call the function in line 3 and have the quote reversed. Finally, ask them to put in some nouns and pluralize each noun using the function in part 4. Continue evaluating nouns till the user inputs QUIT.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

write answer in Language C

1- Write a function that takes a word less than 25 characters long and returns the letter that
word starts with (in capital letters).
Frank starts with the letter F.
2- Write a function that has a string as formal parameter. The function then replaces all spaces
and punctuation marks in the string with the asterisk (*). Here is a sample run:
Nothing is impossible, the word itself says 'I'm possible'!
Nothing*is*impossible**the*word*itself*says**I*m*possible**
3- Write a function that takes as input one line and reverses the words of the line.
For example,
birds and bees
Reversed: bees and birds
4- Write a function that takes nouns (a string) as inputs and forms their plurals based on these
rules:
a. If noun ends in "y", remove the "y" and add "ies".
b. If noun ends in "s","ch", or "sh", add "es".
c. In all other cases, just add "s".
(Test on the following: chair dairy boss circus fly dog church clue dish)
chairs dairies bosses circuses flies dogs churches clues dishes
Now create the driver program,
Ask the user for their first and last name. Store the names in separate arrays.
- Greet the user by their full names.
Let them know what their initials are by calling the function in part 1.
Ask them to input their favorite quote. Call function in part 2 to change the quote.
Now call the function in line 3 and have the quote reversed.
Finally, ask them to put in some nouns and pluralize each noun using the function in part
4. Continue evaluating nouns till the user inputs QUIT.
Transcribed Image Text:1- Write a function that takes a word less than 25 characters long and returns the letter that word starts with (in capital letters). Frank starts with the letter F. 2- Write a function that has a string as formal parameter. The function then replaces all spaces and punctuation marks in the string with the asterisk (*). Here is a sample run: Nothing is impossible, the word itself says 'I'm possible'! Nothing*is*impossible**the*word*itself*says**I*m*possible** 3- Write a function that takes as input one line and reverses the words of the line. For example, birds and bees Reversed: bees and birds 4- Write a function that takes nouns (a string) as inputs and forms their plurals based on these rules: a. If noun ends in "y", remove the "y" and add "ies". b. If noun ends in "s","ch", or "sh", add "es". c. In all other cases, just add "s". (Test on the following: chair dairy boss circus fly dog church clue dish) chairs dairies bosses circuses flies dogs churches clues dishes Now create the driver program, Ask the user for their first and last name. Store the names in separate arrays. - Greet the user by their full names. Let them know what their initials are by calling the function in part 1. Ask them to input their favorite quote. Call function in part 2 to change the quote. Now call the function in line 3 and have the quote reversed. Finally, ask them to put in some nouns and pluralize each noun using the function in part 4. Continue evaluating nouns till the user inputs QUIT.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning