Comment se fait que je peux le faire:Initialiser un tableau de cstring dans une fonction appel
char sXSongs[20][30] = {"Song 1", "Song 2 (w/Blur)", "The End (It's Not Here Yet)"};
addAlbum(&list, "The Beatles", "Some Famous CD", 1960, sXSongs);
Mais pas:
addAlbum(&list, "The Beatles", "Some Famous CD", 1960, {"Song 1", "Song 2 (w/Blur)", "The End (It's Not Here Yet)"});
Est-il impossible d'initialiser un tableau de CStrings dans un appel de fonction ?
Voici quelques autres bribes d'information:
album* list = NULL;
typedef struct album {
char performer[20];
char CDtitle[50];
int year;
char songs[20][30];
struct album* prev;
struct album* next;
} album;