Get FREE 90 Days Trial of Kaspersky Internet Security 2014 License Keys Utilities 17:14 Add Comment Kaspersky is known for its vast amount of World Class Security Products. Kaspersky Internet Security 2014 is one of...
Coolest Windows & Keyboard Shorcuts Windows 7 17:00 1 Comment Working professionally with a computer has their hands on the keyboard most of the time. Reaching for the mouse can...
C program to calculate sum of Upper Triangular Elements in C C Programs 17:45 Add Comment #include< stdio.h> #include< conio.h> void main() { int i,j,a[10][10],sum,m,n; /* m - Number of rows n...
C Program to find addition of Lower Triangular Elements in C Programming C Programs 17:43 Add Comment #include<stdio.h> #include<conio.h> void main() { int i,j,a[10][10],sum,m,n; /* m - Number of rows n...
Program to find Transpose of Given Square Matrix C Programs 17:43 Add Comment #include<stdio.h> #include<conio.h> void main() { int a[10][10],m,i,j,temp; /* actual size of matrix is m*n i,j...
C Program to Check whether Matrix is Magic Square or Not ? C Programs 17:38 Add Comment C Program to Check whether entered matrix is magic square or not ? What is Magic Square : A magic square is a simple...