pc-ip-19.c ​
Metadata ​
- Author — Amit Dutta
- Last updated — 05 Jan 2026
- License — MIT License (See the LICENSE file for details)
Problem Statement ​
Problem Statement
Question 19: Write a C program that includes a user-defined function named binarySearch with the signature int binarySearch(int arr[], int size, int target);.
Source Code ​
Printing the code
To print this file, open it on GitHub and click Raw before printing, or use the Download Raw button above and print directly from that page.
c
#include <stdio.h>
#include <stdlib.h>
int binarySearch(int[], int, int);
void inputArray(int[], int);
void printArray(int[], int);
int main()
{
int n, *arr = NULL, target, foundIndex;
printf("Enter the number of element: ");
scanf("%d", &n);
arr = (int *)malloc(n * sizeof(int));
if (arr == NULL)
{
printf("\nMemory allocation failed.");
return 1;
}
printf("\nPlease enter the sorted array element(s): \n");
inputArray(arr, n);
printf("\nGiven array: ");
printArray(arr, n);
printf("\nPlease enter the target element: ");
scanf("%d", &target);
foundIndex = binarySearch(arr, n, target);
if (foundIndex != -1)
{
printf("\nTarget '%d' found at Index %d.", target, foundIndex);
}
else
{
printf("\nUnable to find target '%d'.", target);
}
free(arr);
return 0;
}
void inputArray(int arr[], int n)
{
int i;
for (i = 0; i < n; i++)
{
printf("Enter element %d: ", i + 1);
scanf("%d", &arr[i]);
}
}
void printArray(int arr[], int n)
{
int i;
printf("[");
for (i = 0; i < n; i++)
{
printf("%d", arr[i]);
if (i < n - 1)
{
printf(", ");
}
}
printf("]");
}
int binarySearch(int arr[], int size, int target)
{
int low = 0;
int high = size - 1;
int mid;
while (low <= high)
{
mid = (low + high) / 2;
if (arr[mid] == target)
{
return mid;
}
else if (arr[mid] > target)
{
high = mid - 1;
}
else if (arr[mid] < target)
{
low = mid + 1;
}
}
return -1;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85