hello i got a problem with returning an array of linklists in c
lets say i got
arrlinklist = {linklist1 , linklist 2...,linklist5}
and i want my function to return arrlinklist.
how do i do that… thx in advance.
i wanted to know how to define the signature of my function
i tried
linkedlist* CreateArrayOfList();
I assume you want something like this:
(there are no checks on this program, you should check for malloc failures etc’)