|
The question remains same, but now the representation changed,
let
abc=(a b c)
def=(d e f)
ghi=(g h i)
array1=(abc def ghi)
now thing is in sub array i know the content or size, let here it is 3
so i want my o/p should come like
abc(1)=a
def(1)=d
ghi(1)=g
then
abc(2)=b
def(2)=e
ghi(2)=h
etcetera etcetera.......
can anybody help me out to achieve it ?????
|