Create a LookupNames project using C++. In the main function: Ask the user to enter a number of names, X to quit input. Store the names in an array. Also use a counter variable to count the number of names entered. Write a function displayNames to display the names. The function must receive the array and the counter as parameters. Write a function called lookupNames. The function must receive the array and the counter as parameters. Ask the user to enter a letter. Display all the names with the letter that was entered as the first letter of the name. Call the displayNames and lookupNames functions from the main function. Tip: declare your functions above the main() function: void displayNames(char array[][60], int count) {   // function code here } int main() {   // main code here   displayNames(names, number);   // possible more code here } Tip2: make sure your function parameter matches the data type you send as an argument to that function. In the above example, names and array should have the same data type, and number and count should have the same data type. Output Example: Enter name (X to quit input): John Peterson Enter name (X to quit input): Diane Lee Enter name (X to quit input): James Smith Enter name (X to quit input): Frank Xaba Enter name (X to quit input): Jacky Mokabe Enter name (X to quit input): x  List of Names John Peterson Diane Lee James Smith Frank Xaba Jacky Mokabe Enter a letter: J  Names starting with the letter J John Peterson James Smith Jacky Mokabe

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

Create a LookupNames project using C++.

In the main function:
Ask the user to enter a number of names, X to quit input.
Store the names in an array.
Also use a counter variable to count the number of names entered.

Write a function displayNames to display the names.
The function must receive the array and the counter as parameters.

Write a function called lookupNames.
The function must receive the array and the counter as parameters.
Ask the user to enter a letter.
Display all the names with the letter that was entered as the first letter of the name.

Call the displayNames and lookupNames functions from the main function.


Tip: declare your functions above the main() function:

void displayNames(char array[][60], int count)
{
  // function code here
}

int main()
{
  // main code here
  displayNames(names, number);
  // possible more code here
}

Tip2: make sure your function parameter matches the data type you send as an argument to that function.
In the above example, names and array should have the same data type, and number and count should have the same data type.

Output Example:


Enter name (X to quit input): John Peterson
Enter name (X to quit input): Diane Lee
Enter name (X to quit input): James Smith
Enter name (X to quit input): Frank Xaba
Enter name (X to quit input): Jacky Mokabe
Enter name (X to quit input): x 


List of Names

John Peterson
Diane Lee
James Smith
Frank Xaba
Jacky Mokabe

Enter a letter: J 

Names starting with the letter J

John Peterson
James Smith
Jacky Mokabe

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY