Jump to content

[Dúvida] Listagem ordenada por...


JoBlack

Recommended Posts

Olá pessoal

No prg que estou a fazer pedem-me que faça listagens de autores por 'nome' e por 'nacionalidade'. Já andei a ver se conseguia alguma coisa mas não consegui chegar a conclusões. O código que fiz e que coloco abaixo só me lista pela ordem natural com que foram inseridos os dados, ou seja, pelo nr.

Alguém me pode dar uma ajudita?

Obrigado.

Parte do código que interessa:


#define FICH3 "Autores.dat" 

struct autor
{
    int nr;
    char nome[50], nacion[20];
} AUT;

FILE *fa;

void ad_autor()
{
    fa=fopen(FICH3,"a+");
    system("CLS");

    while(fread(&AUT,sizeof(AUT),1,fa)==1)
    ;
    AUT.nr+=1;
    fseek(fa,0,SEEK_END);
    printf("\n\t Nome: ");
    fflush(stdin); gets(AUT.nome); AUT.nome[49]=' '; AUT.nome[50]='\0';
    printf("\n\t Nacionalidade: ");
    fflush(stdin); gets(AUT.nacion); AUT.nacion[19]=' '; AUT.nacion[20]='\0';
    fwrite(&AUT,sizeof(AUT),1,fa);
}



void List_autor()
{
   fa=fopen(FICH3,"r");
   system("cls");
   rewind(fa);
   
   printf("\n  Nr    Nome                            Nacionalidade");
   printf("\n  ---------------------------------------------------");
   while(fread(&AUT,sizeof(AUT),1,fa)==1)
   {
    printf("\n\n   %-5d%-32s%-20s", AUT.nr,AUT.nome,AUT.nacion);
   }
    getch();
    fclose(fa);
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.