Question
Write a program that prompts for the user to input a word. Then check the word to make sure the first character is an alphabetic
Write a program that prompts for the user to input a word. Then check the word to make sure the first character is an alphabetic letter and capitalized, and it contains at least 8 characters. If it is not properly written, fix the word by bringing the alphabetic letter to uppercase if it was lowercase, or replace it with A if its not an alphabetic letter. If the words contains less than 8 characters, adding !s to the end to make it 8 characters long. Name your program word.c. Use getchar() to read in the input. The user input ends with the user pressing the enter key (a new line character). Example input/output: Input: hello Output: Hello!!! Input: 3littlepigs Output: Alittlepigs
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started