LATEST UPDATE


* Linear Search Tutorial


* Program to display and find Sum of Even numbers in an Array
* Program to Swap First half with Last half of an Array
* Program to Display numbers divisible by 10 in a Matrix
* Program to find Sum of numbers divisible 2 or 3 in a Matrix
* Program to display Both Diagonal elements of a Matrix
       For Example :
       Matrix :        1   2   3
                           4   5   6
                           7   8   9
        Diagonal 1 : 1   5   9
        Diagonal 2 : 3   5   7
* Program to Display Lower triangle of a Matrix
       For Example :
       Input :       1   2   3             Output :    1
                       4   5   6                              4   5
                       7   8   9                              7   8    9
* Program to Display Upper triangle of a Matrix
       For Example :
       Input :       1   2   3             Output :    1   2    3
                       4   5   6                                   5    6
                       7   8   9                                         9
* Program to display Matrix with elements numbered with row < column else "0"
       For Example :
       Output :       1   0   0   0  
                          1    2   0   0                              
                          1    2   3   0
                          1    2   3   4