About 11,800,000 results
Open links in new tab
  1. C Program for Linear Search - GeeksforGeeks

    Apr 15, 2025 · Linear Search is a sequential searching algorithm in C that is used to find an element in a list. Linear Search compares each element of the list with the key till the element …

  2. Linear search in C - Programming Simplified

    Linear search in C to find whether a number is present in an array. If it's present, then at what location does it occur? It is also known as a sequential search. It is straightforward and works …

  3. Linear Search in C - Code Revise

    Linear search in C is a search algorithm that sequentially checks each element of an array or list until a matching element is found or the end of the list is reached. Linear search is also known …

  4. Linear Search in C | Search Array Element using Linear Search - Edureka

    Mar 29, 2022 · A linear search, also known as a sequential search, is a method of finding an element within a list. It checks each element of the list sequentially until a match is found or …

  5. C Program for LINEAR SEARCH

    Linear search is also called as sequential search. All the elements need not be in sorted order like binary search. The program for linear search is written in C language.

  6. Linear Search in C ProgrammingProgram and Explanation

    Linear search is a searching algorithm which is used to detect the presence of a number in an array and if present, it locates its position in that array. This algorithm compares each element …

  7. Linear Search Program in C - Online Tutorials Library

    Linear Search Program in C - Learn how to implement the Linear Search algorithm in C programming with this tutorial. Understand the code structure and its applications.

  8. Linear Search in C - Know Program

    Linear Search Algorithm in C. The procedure to find an element in a given array or list through linear search, a) Take array, size of the array, and the search key. Assume they are:- array, n, …

  9. How to Search for an Element in an Array (Linear Search) in C

    We define a function linearSearch() that takes an array, its size, and the element to search (key) as arguments. We use a for loop to iterate through the array and compare each element with …

  10. Linear Search in C - Sanfoundry

    Here is a linear search program in C that uses an array and recursion to find the position of an element, along with an explanation and examples.

  11. Some results have been removed
Refresh