R
ravi
which is a best way to free the all the memory used by a hash explain
in the context of complicated data structures like hash of hashes
undef %hash;
delete %hash;
%hash =();
What is the difference between these three
in the context of complicated data structures like hash of hashes
undef %hash;
delete %hash;
%hash =();
What is the difference between these three