Actuellement, j'ai :
-------------------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int ** Tab;
int ** creer_tableau(int ** Tab , int Lignes , int Colonnes)
{
Tab = realloc( Tab , Lignes * sizeof(int *));
Tab[Lignes - 1] = malloc(Colonnes * sizeof(int));
}
main ()
{
int i = 0;
creer_tableau(Tab, 1 , 3); // créé en théorie un tableau 1 ligne , 3 colonnes
//init
for ( i=1 ; i < 3 ; i++ )
{
Tab[0][i] = 0;
}
//fin init
printf("%d/n", Tab[0][2]);
}
-------------------
Apparemment, je n'arrive pas à initialiser tout cela, quelqu'un aurait-il une idée ?
---------------
Wigga with Attitude.