Structure program
Easy • 0 votes
📝 Question
Consider a structure as follows:
struct stud_info
{
int rno;
char sname[30];
int marks;
};
Write a C program that accepts details of N-students and displays student's details in descending order on marks.