How to store multiple arrays in a parent array?
I'm having two arrays array 1 = [ a, b,c]array 2 = [x,y,z]Now I need to store all these two array's in some place and if I call a[0] then I need to get output as a,b,c and if I print a[1] then I need output as x,y,z can some one please help me how t...
