Write a main function that does the following: 1. Store the words borough into a variable. 2. Use string functions to add the string Queens to the start of the variable. 3. Print the modified string variable. Example Output Queensborough

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

C++ Programming

 

 

 

Write a main function that does the following:
1. Store the words borough into a variable.
2. Use string functions to add the string Queens to the start of the variable.
3. Print the modified string variable.
Example Output
Queensborough
Transcribed Image Text:Write a main function that does the following: 1. Store the words borough into a variable. 2. Use string functions to add the string Queens to the start of the variable. 3. Print the modified string variable. Example Output Queensborough
Expert Solution
Step 1

String concatenation is done using append function.

string& string::append (const string& str)

str: the string to be appended.

Here str is the object of std::string class which is an instantiation of the basic_string class template that uses char (i.e., bytes) as its character type. The append function appends the add(variable) string at the end of the init string.

Algorithm:

Step1: start

Step2: read the first and last part of the screen. 

Step3: using append function add two strings.

Step4: display the string 

Step5: stop 

We can also use strcat function.

 

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Introduction to computer system
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning