in reply to dereference an array

Reference an array (or anything else) by putting a backslash in front of it:
push @{ $sortmenu{$category} }, \@cc;
and dereference an arrayref by wrapping the it in @{}:
my @a = @{$arrayref};