fc #include const int MAXX = 4; const int MAXY = 6; const int MAXZ = 7; typedef bool TabTD[MAXX][MAXY][MAXZ]; void affichage_tableau(TabTD matrice); int occ(TabTD tableau,int pos_x, int pos_y, int pos_z); void lecture_tableau (TabTD matrice); 0