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

11
examen/T1/main.c Normal file
View File

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