Description: This program implements the binary search algorithm. Primary Inputs: An array of 10 numbers (sorted in increasing order), and another number to be searched. Primary Output: Gives the location of the number in the array(if found). Platform Used: Turbo C++ version 3.0, Borland International Inc. /* This program implements the Binary * Search Algorithm on ...