In this lab you will create a program that determines the length of a first name and last name individually and then the length of the entire name through the use of the C-style string functions strlen, strcpy, and strcat. Step 1: Begin by declaring and initializing the C-style string variable first_name to contain "Bjarne". Step 2: Now, declare and initialize a second C-style string variable last_name to contain "Stroustrup". Step 3: You must also declare a third C-style string variable whole_name but do not initialize it yet. Remember that the variable whole_name must be large enough to contain the first and last name with no whitespaces. Step 4: Now, by using the C-style string function strlen, declare and initialize the variable first_name_length to contain the length of the first_name string and the variable last_name_length to contain the length of the last_name string. Step 5: Using the C-style string function strcpy, copy the first_name string to the whole_name string variable. Step 6: Now, by using the C-style string function strcat, concatenate the last_name string at the end of the whole_name string. Step 7: Finally, by using the C-style string function strlen, declare and initialize the variable whole_name_length to contain the length of the whole_name string. Step 8: Output.... copy/paste this code to display your output. cout << "The length of the first name, " << first_name << ", is " << first_name_length << " letters long and the length of the last name, << last_nam e << ", is << last_name_length << letters long. This means that the length of the whole name must be " << whole_name_length << ' letters long.";

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In C++

In this lab you will create a program that determines the length of a first name and last name individually and then the length of the entire name through the
use of the C-style string functions strlen, strcpy, and strcat.
Step 1: Begin by declaring and initializing the C-style string variable first_name to contain "Bjarne".
Step 2: Now, declare and initialize a second C-style string variable last_name to contain "Stroustrup".
Step 3: You must also declare a third C-style string variable whole_name but do not initialize it yet. Remember that the variable whole_name must be large
enough to contain the first and last name with no whitespaces.
Step 4: Now, by using the C-style string function strlen, declare and initialize the variable first_name_length to contain the length of the first_name string and
the variable last_name_length to contain the length of the last_name string.
Step 5: Using the C-style string function strcpy, copy the first_name string to the whole_name string variable.
Step 6: Now, by using the C-style string function strcat, concatenate the last_name string at the end of the whole_name string.
Step 7: Finally, by using the C-style string function strlen, declare and initialize the variable whole_name_length to contain the length of the whole_name
string.
Step 8: Output.... copy/paste this code to display your output.
cout << "The length of the first name, << first_name <<
is << first_name_length << " letters long and the length of the last name, << last_nam
e << ", is << last_name_length << " letters long. This means that the length of the whole name must be << whole_name_length << letters long.";
"1
"1
Transcribed Image Text:In this lab you will create a program that determines the length of a first name and last name individually and then the length of the entire name through the use of the C-style string functions strlen, strcpy, and strcat. Step 1: Begin by declaring and initializing the C-style string variable first_name to contain "Bjarne". Step 2: Now, declare and initialize a second C-style string variable last_name to contain "Stroustrup". Step 3: You must also declare a third C-style string variable whole_name but do not initialize it yet. Remember that the variable whole_name must be large enough to contain the first and last name with no whitespaces. Step 4: Now, by using the C-style string function strlen, declare and initialize the variable first_name_length to contain the length of the first_name string and the variable last_name_length to contain the length of the last_name string. Step 5: Using the C-style string function strcpy, copy the first_name string to the whole_name string variable. Step 6: Now, by using the C-style string function strcat, concatenate the last_name string at the end of the whole_name string. Step 7: Finally, by using the C-style string function strlen, declare and initialize the variable whole_name_length to contain the length of the whole_name string. Step 8: Output.... copy/paste this code to display your output. cout << "The length of the first name, << first_name << is << first_name_length << " letters long and the length of the last name, << last_nam e << ", is << last_name_length << " letters long. This means that the length of the whole name must be << whole_name_length << letters long."; "1 "1
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
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.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education