slt tlm:
j'ai introduit le code suivant:
<code>
char * my_func(........)
{char ch[30];
mon code.....
return(ch);
}
void main()
{ char chaine[30];
chaine=my_func(......);
}
<\code>
il m'affiche l'erreur suivante :
'=' cannot convert from 'char *' to 'char [30]'
There are no conversions to array types
???????????
que dois je faire pour que ça marche?? 