I have a struct Track
with variable like this char artist[81];
I have a function to create a new track Track *newTrack(char *artist, char *title, int time);
But doing this is not possible..
track->artist = artist;
How can I transform a char array into a char?