type **_tab= malloc(colonnes * lignes * sizeof(**tab);
type tab[colones][lignes]= _tab;
6ème colone, 4ème ligne: tab[5][3]
ou
type *tab= malloc(colonnes * lignes * sizeof(**tab);
x-ème colone, y-ème ligne: tab[(x*colonnes)+y]
Core Breaker 
-------------------------------
Réponse au message :
-------------------------------
> Bonjour à tous.
> Je cherche à créer un tableau à deux dimensions de manière dynamique. J'y arrive avec un tableau unidimensionnel mais pas avec deux dimensions... Pourquoi? Comment faire????
>
> Merci
>
> RGug