Modify the following code to add a new function called “delete_target” that will delete the target value from the array and update the array accordingly.Code:#include <stdio.h> #define NOT_FOUND -1 int search(const int arr[], int target, int n);int main(){ int s[] = {1,2,3,4,5,6,10}; int index; int ID_SIZE = 7; index = search(s,10,ID_SIZE); printf("%d",index);  return 0;}int  search(const int arr[],  int target, int n)[15]{  int i,  found = 0,  where; i = 0;  while (!found && i < n) {  if (arr[i] == target)  found = 1;  else  ++i;  }  if (found)  where = i;  else  where = NOT_FOUND;  return (where); }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section: Chapter Questions
Problem 3PP: (Numerical) Given a one-dimensional array of integer numbers, write and test a function that...
icon
Related questions
Question

Modify the following code to add a new function called “delete_target” that will delete the 
target value from the array and update the array accordingly.
Code:
#include <stdio.h> 
#define NOT_FOUND -1 
int search(const int arr[], int target, int n);
int main(){
 int s[] = {1,2,3,4,5,6,10};
 int index;
 int ID_SIZE = 7;
 index = search(s,10,ID_SIZE);
 printf("%d",index);
 
 return 0;
}
int 
 search(const int arr[], 
 int target,
 int n)
[15]

 int i, 
 found = 0, 
 where;
 i = 0; 
 
while (!found && i < n) { 
 if (arr[i] == target) 
 found = 1; 
 else 
 ++i; 
 } 
 if (found) 
 where = i; 
 else 
 where = NOT_FOUND; 
 return (where); 
}

AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
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