/*PROGRAM TO SORT A LIST OF MAXIMUM 100 NAMES AND DISPLAY LIST IN ASCENDING ORDER*/ #include #include #include void main() { int stud,i,j,status; char records[100][60],temp[60]; clrscr(); printf("\nEnter the number of students: "); scanf("%d",&stud); for(i=0;i0) { strcpy(temp,records[j]); strcpy(records[j],records[j+1]); strcpy(records[j+1],temp); } } } printf("\nSorted List: "); for(i=0;i