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...
C Program to Print Square of Each Element of 2D Array Matrix C Programs 17:38 Add Comment C Program : C Program to Print Square of Each Element of 2D Matrix #include<stdio.h> #include<conio.h> #define...
C Program to Read Array Elements C Programs 17:35 Add Comment #include<stdio.h> #include<conio.h> void main() { int i,a[50],sum,n; printf("n Enter no of elements :"); ...