/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl, C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog. Code, Compile, Run and Debug online from anywhere in world. *******************************************************************************/ #include struct rep_fecha { unsigned int f ; // AAAAMMDD }; int main() { //Se crea un arreglo de elementos de tipo rep_fecha y se inicializa con el arreglo de fechas unsigned int n=3; rep_fecha fechas[]={{20221010},{20220515},{19921120}}; //Ordenar usando selectionsort for (unsigned int i = 0; i < n-1; i++) { unsigned int min_idx = i; for (unsigned int j = i+1; j