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.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
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.
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