/*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,roll_no[100],tempo; char records[100][60],temp[60]; clrscr(); fflush(stdin); 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); tempo=roll_no[j]; roll_no[j]=roll_no[j+1]; roll_no[j+1]=tempo; } } } printf("\nSorted List: \n"); for(i=0;i