2023-04-05 13:24:47 +02:00

11 lines
216 B
C

#include "StatistiqueFichier.h"
#include <stdio.h>
int main()
{
ASCII_table table;
table = init_table();
StatistiqueFichier("fichier.txt", &table);
print_StatistiqueResultats(&table);
return 0;
}