typedef struct{
long At[tam], Si[tam], Sf[tam];
}TDados;
For this struct
, I wanted to understand how to sort struct
by Sf using the qsort function. Can anyone explain?
typedef struct{
long At[tam], Si[tam], Sf[tam];
}TDados;
For this struct
, I wanted to understand how to sort struct
by Sf using the qsort function. Can anyone explain?