palsubho801-create/Beginner-Tasks-Repo

Implement a Binary Search Function in C

Aperta

#23 aperta il 16 ott 2025

 (2 commenti) (0 reazioni) (0 assegnatari)C (4 fork)auto 404
hacktoberfest

Metriche repository

Star
 (0 stelle)
Metriche merge PR
 (Metriche PR in attesa)

Descrizione

Create a new file named 'binary_search.c' that implements the Binary Search algorithm.

Requirements:

  1. The function must assume the input array is already sorted.
  2. It should return the index of the target element if found, or -1 otherwise.
  3. Include a main function to test the search on a hardcoded sorted array.

Guida contributor