There is the following structure:
typedef struct nodo{
int matricula, edad;
char nombre[20];
float peso, altura;
struct nodo *next, *prev;
} List;
List *first, *buffer, *buffer2;
And to sort it, according to the member, ther...
asked by
01.05.2018 / 02:12