Associative array

hi all,
is there a better way to declare multiple associative arrays by a single multidimensional associative array.

for example

structure_t array[string][4] or structure_t array[4][string]

basically i want to have 4 associative arrays with string type id.

thanks

In reply to pawan:

Define “better”. What’s wrong with what you wrote?

In reply to pawan:

you can define like structure_t array[*] (wildcard index can be int ,string …) and size you dont need to mention earlier for associative array.