b) write a C program that uses this binary searching function to create/print data. void binarySearching (int data[]) { int start=0; int end=9; int status=0; int n, middle;

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 8PP: (Data processing) A bank’s customer records are to be stored in a file and read into a set of arrays...
icon
Related questions
Question
i need the answer quickly
b) write a C program that uses this binary searching function to
create/print data.
void binarySearching (int data [])
{
int start=0;
int end=9;
int status=0;
int n, middle;
printf("\n\nInteger to search: ");
scanf ("&d",&n);
printf ("\n\t Index\tData");
while ( (status!=1) && (start<=end) )
{
middle= (start+end) /2;
printf ("\n\t %d\t %d", middle, data [middle]);
if (n==data [middle])
status=1;
else if (n<data [middle])
end=middle-1;
else
start=middle+1;
}
if (status!=1)
printf("\n\tData not found");
}
Transcribed Image Text:b) write a C program that uses this binary searching function to create/print data. void binarySearching (int data []) { int start=0; int end=9; int status=0; int n, middle; printf("\n\nInteger to search: "); scanf ("&d",&n); printf ("\n\t Index\tData"); while ( (status!=1) && (start<=end) ) { middle= (start+end) /2; printf ("\n\t %d\t %d", middle, data [middle]); if (n==data [middle]) status=1; else if (n<data [middle]) end=middle-1; else start=middle+1; } if (status!=1) printf("\n\tData not found"); }
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Business Models
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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning