I need to get value from the below table
{ {1,25,{45,6,4},5,8,{10,15},1,4,0,0},
{0,25,{6,4},{1,2,5,8},5,{10,15},1,{7,5,2,6,11,15},4,0},
{0,2,3,4,5,8,{10,15},1,{1,2,3,4,5,6,7,8,9},0}
}
first index is fixed to 3 and in each index no of elements fixed to 10, but inside of some index no of elements is not fixed ... so how can i get this value. how to declare it .
I did like array_x[3][10][];
but its not working .. please suggest