11 lines
216 B
C
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;
|
|
} |