Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Added Comments
  • Loading branch information
arpitv424 authored Oct 2, 2019
1 parent 78d815c commit aa3fd5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions searching/LinearSearch.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ int linearsearch(int *arr, int size, int val){
}

void main(){
int s,i,v;
int n,i,v;
printf("Enter the size of the array:\n");
scanf("%d",&s);
scanf("%d",&n); //Taking input for the size of Array

int a[s];
int a[n];
printf("Enter the contents for an array of size %d:\n", s);
for (i = 0; i < s; i++) scanf("%d", &a[i]);// accepts the values of array elements until the loop terminates//
for (i = 0; i < n; i++) scanf("%d", &a[i]);// accepts the values of array elements until the loop terminates//

printf("Enter the value to be searched:\n");
scanf("%d", &v);
if (linearsearch(a, s, v))
scanf("%d", &v); //Taking input the value to be searched
if (linearsearch(a,n,v))
printf("Value %d is in the array.\n", v);
else
printf("Value %d is not in the array.\n", v);
Expand Down

0 comments on commit aa3fd5d

Please sign in to comment.