Theory
Write a C program to find transpose of a matrix.
#include
void main()
{
int arr1[100];
int n, i, j, tmp;
printf("\n\nsort elements of array in descending order :\n");
printf("Input the size of array : ");
fflush(stdout);
scanf("%d", &n);
printf("Input %d elements in the array :\n",n);
for(i=0;i.... Show MoreFrom Arrays · C programming
Write a C program to find transpose of a matrix.
Write a C program to find the determinant of n*n matrix.
Write a program in C to delete an element at desired position from an array.
Write a program in C to insert New value in the array.
Write a program in C to sort elements of an array in ascending order.
Write a program in C to find the maximum and minimum element in an array.
Write a C Program to Add Two Matrices Using Multi-dimensional Arrays.
Write a program in C to separate odd and even integers in separate arrays.