Electrical
and Computer Engineering
Problem-Solving Case Study
•Problem: You must write a program to write personalized contest entry letters. As a first effort, you need it to
work for one name. Later, it will read
names from a mailing list file.
•Output: A form letter
with a name inserted at the appropriate
point so that it appears to be a personal letter.
•Discussion: You need
to insert a name in the marketing department’s
text. The parts of a person’s name need to be stored separately, different parts are used in different
places. You need to use the string concatenation
operator.
•