Tengo un problemilla con una asignacion.
Código
char * pathGroup[8]; // variable global int funcion(char * paths[8]){ pathGroup=paths; // el error esta aqui. // resto del codigo................. return 0; }
Citar
Y el error reportado por gcc es:
incompatible types when assigning to type ‘char *[8]’ from type ‘char **
incompatible types when assigning to type ‘char *[8]’ from type ‘char **
¿Como puedo hacer esa asignacion correctamente?