PROGRAM TO SORT WORDS ALPHABETICALLY
/*PROGRAM TO SORT WORDS ALPHABETICALLY*/ #include<stdio.h> #include<conio.h> void main() { char a[10][20],temp[20]; int i,n,j; clrscr(); printf(“Enter the size of array: “); scanf(“%d”,&n); printf(“Enter elements in the array:\n”); for(i=0;i<n;i++) { scanf(“%s”,a[i]); …