C Programs on Arrays and sortings
C Program to demonstrate single dimension array #include<stdio.h> #include<conio.h> main() { int a[10], i; clrscr(); printf(“Enter 5 elements for an array\n”); for(i=0; i<5; i++) { scanf(“%d”, &a[i]); } printf(“\t\t INPUT of an ARRAY\n”); for(i=0; i<5; i++) { printf(“\t\t\t %d\n”, a[i]); } getch(); } C Program to demonstrate multi dimension array [Sum of two Matrix Program] …