Hola Este es parte de mi codigo y de verdad no se como arreglar el problema
Y obtenego estos errores:
error: incompatible types in assignment of 'const char [6]' to 'char [10]'
Código (c) [Seleccionar]
typedef struct{
int x,y;
char name[10];
}Opcion;
void opciones()
{
int i;
Opcion opc[3];
opc[0].name="JUGAR";
opc[1].name="RECORDS\0";
opc[2].name="AYUDA\0";
opc[3].name="SALIR\0";
for(i=1;i<=4;i++)
{
opc[i-1].x=10;
opc[i-1].y=i*100;
rectangle(opc[i-1].x,opc[i-1].y,opc[i-1].x+30,textwidth(opc[i-1].name));
}
}
Y obtenego estos errores:
error: incompatible types in assignment of 'const char [6]' to 'char [10]'