I need to know if i want to make an array that every element of the array is a pointer to a linked list and pass the array to a function, the function is void because I need to change the array
typedef struct n{
char *S;
int num;
}list;
int (main){
list *Array[50];
return 0;
}
should the function be void changeArray(list A[]); or void changeArray(list *A[]); or void changeArray(list **A[]);
void changeArray(list *A[]);