Satish

  • C

Linear Search: C

In this video tutorial we shall see how we can search for a number in an array in linear fashion.…

14 years ago
  • C

Find First and Second Biggest In An Array, Without Sorting It: C

We assume that a[0] has first biggest and a[1] has the second biggest value. Now check if this assumption is…

14 years ago
  • C

Find Biggest In An Array, Without Sorting It: C

First we have to assume that a[0] is biggest. Now store the value of a[0] inside a variable called big.…

14 years ago
  • C

Bubble Sort: C

In this video tutorial we illustrate the bubble sort algorithm and also see how to write it in C programming,…

14 years ago
  • C

Selection Sort of N numbers: C

Selection sort is a sorting technique which is inefficient on large list of elements. Its simple and easy to understand.…

14 years ago