The following code implements linear search (Searching algorithm) which is used to find whether a given number is present in an array or not and if it is present then at what location it occurs. It is also known as sequential search. It is very simple and works as follows: we keep on comparing each element with the element to search until the desired element is found. Time required to search an element using linear search algorithm depends on the size of list. In the best case, element is present at the beginning of list and in the worst case, element is present at the end. Time complexity of linear search is O(n). #include <stdio.h> int main() { int array[100], search, c, n; printf("\nEnter the number of elements in array: "); scanf("%d",&n); printf("\n\nEnter %d integer(s): \n", n); for (c = 0; c < n; c++) scanf("%d", &array[c]); printf("\n\nEnter the number to search: "); scanf("...