examen fini

This commit is contained in:
2023-04-05 13:24:47 +02:00
parent 0f0c9a48dc
commit 9ee8f961b3
9 changed files with 207 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
typedef struct ASCII_table
{
int ASCII[256];
} ASCII_table;
ASCII_table init_table();
ASCII_table *StatistiqueFichier(char *nomFichier, ASCII_table *table);
void print_ASCII_table(ASCII_table *table);
void print_StatistiqueResultats(ASCII_table *table);