35 lines
466 B
C
35 lines
466 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
#define BLOC_ENTIER sizeof(int)
|
|
|
|
int main(void){
|
|
|
|
|
|
FILE* fluxFichierTop;
|
|
|
|
fluxFichierTop = fopen("top10", "r");
|
|
|
|
if (fluxFichierTop) {
|
|
|
|
int score=0;
|
|
char sigle[3];
|
|
|
|
while(1){
|
|
|
|
fread(&score,sizeof(int),1,fluxFichierTop);
|
|
fread(sigle,sizeof(char),3,fluxFichierTop);
|
|
|
|
if (feof(fluxFichierTop)){
|
|
|
|
fclose(fluxFichierTop);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
printf("%08d %s\n",score,sigle);
|
|
}
|
|
}
|
|
|
|
}
|
|
|