I want to declare and use 100 hashes like
a1,a2,a3,a4,a5,a6,......so on
so instead of declaring like
my (%a1,%a2,%a3,....);
is there anything possible like
for($i=1;$i<100;$i++)
{
my %a . "$i";
}
or
for($i=1;$i<100;$i++)
{
my %{a }$i;
}
please give the correct syntax, if any. and how to use it subsequently while accessing.......thanx