C++ Program to define a function and incorporate the array of structures to input and store any 30 records
Display the following using functions incorporated through structure definition viz. display of all entered records,sort the records according to the marks in descending order and display of sorted records.
#include<iostream.h>
#include<conio.h>
#include<string.h>
#include<stdio.h>
struct ward
{
char name[20];
float marks;
} stud[5];
void display();
void sort();
void dispsort();
main()
{
clrscr();
//...