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