Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Linear_Search.c #168

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion SearchAlgorithms/Linear_Search.c
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@

#include <stdio.h>
int search(int arr[], int n, int x);
int main(void)
{
int arr[100], x, n;
printf("Enter the no of elements: "); scanf("%d",&n);
printf("Enter all the elements\n");
for(int i=0;i<n;i++) scanf("%d",&arr[i]);
printf("Enter the element you want to check: ");
scanf("%d\n",&x);
int result = search(arr, n, x);
if(result == -1) printf("Element is not present in array");
else printf("Element is present at index %d", result);
return 0;
}
int search(int arr[], int n, int x)
{
int i;
for (i = 0; i < n; i++)
if (arr[i] == x)
return i;
return -1;
}