Define the 10 functions given below and test their working replacing on function at time with code
#include<stdio.h>
#include<conio.h>
struct eamcet
{
int htno;
char name[11];
float score;
int rank;
};
typedef struct eamcet alist;
main()
{
alist ele[10]={0};
int n=0,y=0,pos=0;
void...