BUT2/DEV/DEV1.1_suite/Fichiers/Q2_Challenger.c~

23 lines
498 B
C
Raw Permalink Normal View History

2023-10-23 13:23:36 +02:00
#include<stdlib.h>
#include<stdio.h>
int main(void){
int place;
char nom[10][4];
int score[10];
FILE* hallOfFame = fopen("top10","r");
if (hallOfFame){
for (place=0;place<10;place++){
fread(&score[place],sizeof(int),1,hallOfFame);
printf("%09d",score[place]);
fread(&nom[place],sizeof(char),3,hallOfFame);
nom[place][3]='\0';
printf("%4s\n",nom[place]);
}
fclose(hallOfFame);
}
else{
printf("c'est toi qui est null\n");
}
return 0;
}