Write a C++ program that receives an array of type int, a target to look for and n representing the size of the array. The function also receives an array loc. Then, in addition to returning how many times the target is present in the array, it fills the array loc with O's in location not containing the target and 1's in location containing the target. For example if the function receives this array {1,6,4,9,6,8,0,6} and receives 6 as target. It will return 3 ( 6 is present 3 times) and the array loc will be as {0,1,0,0,1,0,0,1}. You main function should work as shown below: (Inactive C:\TCWIN\BIN\HW4Q2. EXE) Enter how many elements are in the array>8 Enter 8 values for the array> 1 5 0 Enter a target to look for >5 5 is present 3 times in the array The index values where 5 is present are: (Inactive C:ITCWIN\BIN\HW4Q2. EXE) Enter how many elements are in the array>7 Enter 7 values for the array> 16 8 9 10 8 3 Enter a target to look for >11 Sorry 11 is not in the array 6 5 7 5 10 1 4 6.

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

Problem 28 - Arrays

C++ program pls

Write a C++ program that receives an array of type int, a target to look for and n representing the size of
the array. The function also receives an array loc. Then, in addition to returning how many times the
target is present in the array, it fills the array loc with 0's in location not containing the target and 1's in
location containing the target.
For example if the function receives this array {1,6,4,9,6,8,0,6} and receives 6 as target. It will return 3 (6
is present 3 times) and the array loc will be as {0,1,0,0,1,0,0,1}.
You main function should work as shown below:
(Inactive C:\TCWIN\BIN\HW4Q2. EXE)
Enter how many elements are in the array>8
Enter 8 values for the array>
1 5 0 6 5 7 5 10
Enter a target to look for >5
5 is present 3 times in the array
The index values where 5 is present are:
(Inactive C:\TCWIN\BIN\HW4Q2. EXE)
Enter how many elements are in the array>7
Enter 7 values for the array>
16 8 9 10 8 3
Enter a target to look for >11
Sorry 11 is not in the array
1
4
Transcribed Image Text:Write a C++ program that receives an array of type int, a target to look for and n representing the size of the array. The function also receives an array loc. Then, in addition to returning how many times the target is present in the array, it fills the array loc with 0's in location not containing the target and 1's in location containing the target. For example if the function receives this array {1,6,4,9,6,8,0,6} and receives 6 as target. It will return 3 (6 is present 3 times) and the array loc will be as {0,1,0,0,1,0,0,1}. You main function should work as shown below: (Inactive C:\TCWIN\BIN\HW4Q2. EXE) Enter how many elements are in the array>8 Enter 8 values for the array> 1 5 0 6 5 7 5 10 Enter a target to look for >5 5 is present 3 times in the array The index values where 5 is present are: (Inactive C:\TCWIN\BIN\HW4Q2. EXE) Enter how many elements are in the array>7 Enter 7 values for the array> 16 8 9 10 8 3 Enter a target to look for >11 Sorry 11 is not in the array 1 4
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Array
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