To dereference a scalar reference, you use $$variablename - the first $ indicates scalar context, and the second $ dereferences the scalar reference. @$variablename (option B) would dereference an array reference, and %$variablename would dereference a hash reference.