C Operators Missing From Perl
Here is what C has that Perl doesn't:
-
unary &
Address-of operator. (But see the
"\"
operator for taking a reference.) -
unary *
Dereference-address operator. (Perl's prefix dereferencing operators are typed:
$
,@
,%
, and&
.) -
(TYPE)
Type-casting operator.
Please login to continue.