Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in c program: Name this program caps.c - In this program, you will read a number of words specified by the user. You will output
in c program: Name this program caps.c In this program, you will read a number of words specified by the user. You will output all capital letters in the words with length greater than Assume no word will contain more than characters and no more than capital letters will appear.
Examples:
Enter how many words:
Enter words:
Hello tHeRe
The result is HHR
Enter how many words:
Enter words:
General KenOBI You are a BoLD one
The result is 'GKOBIBLD'
Notes:
Solve the program incrementally. First solve the problem for one word, and then modify it to work with many words.
Don't forget to NULL terminate the string you build.
Match the output of the examples exactly.
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