I want to store details of 100 nodes in 100 arrays. For example,
neighbors of
node 1
should be stored inarray1
In this, for each array the names should be changed like array1
, array2
, array3
, ..., array100
I need the concatenation for array and ( 1 , 2 , 3 , ... , 100 ) using for
loop.
How can I do this?