基本的に、配列はユーザー入力で初期化する必要があります。の場合input = 3
、この配列はそれぞれ 1 つのリンクされたリストをインデックスに格納できることを意味します0,1,2
(つまり、合計 3 つのリスト)
int input = 3;
list* array[n]//not allowed as n is not constant, also not in heap so can't pass it across functions
list* array[] = (list*) malloc(sizeof(list)*input)//compiler error
面接の準備…ということで宿題!