in reply to Re^3: re-initialize the hash
in thread re-initialize the hash

Did you check that one.
@hash{keys %hash}=0 x scalar(keys %hash);
I gave me the following output as ,
$VAR1 = { 'c' => '000', 'a' => undef, 'b' => undef };
I want all the values of hash to '0'.