#include #include #include using namespace std; int ** Matrice(int p, int q){ //Creation dynamique d'une matrice int** T= new int* [p]; for(int i=0; i> n; int** T= Matrice(n,n); RemplitMatrice(n,n,T); AfficheMatrice(n,n,T); EffaceMatrice(n,T); }