Sort the names and address into alphabetical order using structure
/*Sort the names into alphabetical order using structure*/ #include<stdio.h> #include<conio.h> #include<string.h> main() { char temp_name[50],temp_add[50]; int i,j,n; struct people { char name[50]; char add[50]; } p[200]; printf("Enter the number of …
Sort the names and address into alphabetical order using structure Read More