#include #define TAILLE_X 6 #define TAILLE_Y 4 using namespace std; void presenterTableau(int tableauPtrCopie[TAILLE_Y][TAILLE_X]); int main() { cout << "Voici un tableau :" << endl; int tableauBiDimensions[TAILLE_Y][TAILLE_X] = { {1,2,1,5,4,9}, {3,4,3,4,5,9}, {9,9,9,9,9,9}, {1,8,4,5,5,6}}; for (int i(0); i