C Operators Missing From Perl

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.

doc_perl
2016-12-06 03:18:26
Comments
Leave a Comment

Please login to continue.