Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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.

PLEASE ANSWER IN C LANGUAGE

image text in transcribed

image text in transcribed

main.c Load default template... 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

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

Question

4-6 Is there a digital divide? If so, why does it matter?

Answered: 1 week ago