Get Started
860

Q: How would you use qsort() function to sort an array of structures?

  • Show Answer
  • Workspace

Answer :
Explanation :

#include "string.h" #include "stdlib.h" struct stud {        int rollno;        int marks;        char name[30]; }; int sort_m (struct stud *, struct stud *); int sort_name (struct stud *, struct stud *); int sort_marks (struct stud *, struct stud *);   main() { static struct stud ss[] = {                                             { 15, 96, "Akshay" },                                             { 2, 97, "Madhuri" },                                             { 8, 85, "Aishvarya" },                                             { 10, 80, "Sushmita" }                                    }; int x,w; clrscr(); w = sizeof (struct stud);   printf ('\nIn order of roll numbers:"); qsort (ss, 4, w, sort_rn); for(x=0; xrollno-t2->rollno); }   int sort_name (struct stud *t1, struct stud *t2) {      return (strcmp(t1->name,t2->name)); } int sort_marks (struct stud *t1, struct stud *t2) {      return (t2->marks-t1->marks); }

The Most Comprehensive Exam Preparation Platform

Get the Examsbook Prep App Today