Beh ora mi trovo in difficoltà vi posto il codice
typedef struct nodo { // STRUTTURA DEL NODO NELLA CODA
int Number;
char String[5];
} NODO;
void InitCross ( ????? )
int main()
{
NODO Incroci[NUM_INCROCI * 2][STACK_DIM];
InitCross ( ?????????????? );
}
void InitCross ( ????? )
{
int Index;
for ( Index = 0 ; Index < NUM_INCROCI * 2 ; Index ++ )
(*Incroci)[Index][0].Number = 0;
*Priority = 1;
}
Come definisco la funzione ed accedo alla matrice se utilizzo una matrice nxm ???