Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

LAB: Acronyms An acronym is a word formed from the initial letters of words in a set phrase. Define a function named CreateAcronym that takes

LAB: Acronyms An acronym is a word formed from the initial letters of words in a set phrase. Define a function named CreateAcronym that takes two string parameters: userPhrase and userAcronym. Function CreateAcronym() then assigns userAcronym with the acronym of userPhrase. Append a period (.) after each letter in the acronym. If a word begins with a lower case letter, don't include that letter in the acronym. Then write a main program that reads a phrase from input, calls CreateAcronym() with the input phrase as one of the arguments, and outputs the resulting acronym. Assume the input has at most 50 characters and contains at least one upper case letter.

Ex: If the input is: Institute of Electrical and Electronics Engineers the output should be: I.E.E.E.

Ex: If the input is: Association for computing MACHINERY the output should be: A.M.

The letters ACHINERY in MACHINERY don't start a word, so those letters are omitted. The program must define and call a function: void CreateAcronym(char userPhrase[], char userAcronym[])

Hint: Use isupper() to check if a letter is upper case.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

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

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

Advances In Databases 11th British National Conference On Databases Bncod 11 Keele Uk July 7 9 1993 Proceedings Lncs 696

Authors: Michael F. Worboys ,Anna F. Grundy

1993rd Edition

3540569219, 978-3540569213

More Books

Students also viewed these Databases questions

Question

How many 2 : 4 decoders are used to implement 1 0 : 1 0 2 4 decoder

Answered: 1 week ago