Hello I´m trying to copy a char from a structure. So I have the structure
char Person[50]
typedef struct {
char Name[50] = "Hello";
int Date;
float Times86;
}NewName;
How can I copy the Hello out of the structure into a normal char. If I do
Person = NewName.Name
The Errorassignment to expression with array type
appears