400Fermer402
PpHdLe 27/04/2009 à 20:54
Ximoon (./380) :
À savoir ?


Là:
void f(const int h[3][3]);
void h(int [3][3]);

int g(void)
{
  int t[3][3];
  h(t);
  f(t);
  return 0;
}


Il faut écrire:
f(*(const int (*)[3][3]) &t);

C'est moche sad