Objective: string and character manipulation, string.h and ctype.h libraries For each of the problems, create a user-defined function. Then write a driver program for the functions inside the main. 1- Write a function that takes a word less than 25 characters long and returns the letter that word starts with (in capital letters). 2- Write a function that has a string as formal parameter. The function then replaces all spaces
Objective: string and character manipulation, string.h and ctype.h libraries
For each of the problems, create a user-defined function. Then write a driver program for the
functions inside the main.
1- Write a function that takes a word less than 25 characters long and returns the letter that
word starts with (in capital letters).
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 (*).
3- Write a function that takes as input one line and reverses the words of the line
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”.
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.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images