Heap sort algorithm

Heap sort algorithm Heap sort was invented by John Williams. Heap is a complete binary tree in which every parent node be

Read more

Why new year start from 1st January

Why new year start from 1st January 1 जनवरी से ही नए साल की शुरुआत क्यों? 1 जनवरी, यानी नए

Read more

Merge Sort Algorithm

Merge Sort Algorithm Merge Sort is a Divide and Conquer algorithm. It divides input array in two halves, calls itself for the

Read more

Linear Search vs Binary Search

Linear Search vs Binary Search A Linear Search is the most basic type of searching algorithm. A Linear Search sequentially moves through your collection (or data

Read more

Matrix multiplication program in C

Matrix multiplication program in C Matrix multiplication in C language to calculate the product of two matrices (two-dimensional arrays). A

Read more

C Program to Check whether an Alphabet is Vowel or Consonant

C Program to Check whether an Alphabet is Vowel or Consonant This program takes the character value(entered by user) as

Read more