From 91c7fc6ad1a756a75a41ed6291c902b8d0c679d3 Mon Sep 17 00:00:00 2001 From: NANDEESH GUPTA <34302186+NandeeshG@users.noreply.github.com> Date: Wed, 4 Sep 2019 01:04:24 +0530 Subject: [PATCH] Write a comment Learning how to make a PR --- Binary_Search.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Binary_Search.cpp b/Binary_Search.cpp index 9716354..b87fc5c 100644 --- a/Binary_Search.cpp +++ b/Binary_Search.cpp @@ -1,4 +1,5 @@ #include +//This program finds an element in an array using binary search using namespace std; @@ -31,4 +32,4 @@ int main() { int index = bin_search( arr , n , x ) ; cout << endl << index << endl; -} \ No newline at end of file +}