Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN C Try with examples: must be correctly returned As Soon aS pOssible SELF Contained Underwater Breathing Apparatus Master of Public Health An acronym is

image text in transcribed

IN C

Try with examples: must be "correctly returned"

As Soon aS pOssible

SELF Contained Underwater Breathing Apparatus

Master of Public Health

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

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

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

3319234609, 978-3319234601

More Books

Students also viewed these Databases questions