struct node
{
node (array [8] [10]):{int num1, int num2, array [num1] [num2]}//this is where im stumped first
int a;
}
how do i initialize the member selector and also how might i initialize the arrays data?
like this? node1.array [10][10] = {23,231,4124,}
if i do that my compiler shouts at me, how do i dothis?
My goal would be to put some ascii art in each node, say i stored the alphabet in the form of a 2d array eg;
--cc--
cc--cc
cc----
cc----
cc--cc
--cc--
would be 'c' then my next job would be to have each linked list initialize another array and be able to add other links onto it lie so;