#define NB_LIG 100 /* exemples de constantes pour dimensionner les tableaux */
#define NB_COL 10
static short int mat[NB_LIG][NB_COL]; /* la matrice est initialisée à 0 grâce à static */
static double reel[5][3] ; /* 5 lignes, 3 colonnes */
static char Ecran[25][80] ; /* 25 lignes, 80 colonnes */
static float courbe[10][10][10] ; /*tableau à 3 dimensions */
