Código
In function 'Subtitulo definir(int, int, char texto(*)[80], Tiempo, Tiempo)':
Subtitulo definir (int num, int nLineas, char texto[][MAX_LONG_LINEA], Tiempo t_inicio, Tiempo t_fin){ Subtitulo s; s.numero=num; s.numLineasTexto=nLineas; s.texto=texto; //[color=red]ERROR AQUI[/color] s.inicio=t_inicio; s.fin=t_fin; return s; }
error incompatible types in assignament of 'char (*)[80] to 'char [3][80]
He probado mil cosas para tratar de que me funcione como por ejemplo dandole a la matrz char texto de mi funcion filas pero me sigue poniendo el error, no se como la puedo convertir. Saludos