Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
    print_array_char( "revendar" );
    print_array_int (-1,12,23,3);
    
  2. or download this
    Length of array is 8
    Element array[0] = r
    ...
    Element array[6] = a
    Element array[7] = r
    Undefined subroutine &main::print_array_int_alt called at try.pl line 
    +....
    
  3. or download this
    void print_array_int(int x, ...) {
      dXSARGS;
    ...
      }
      XSRETURN(0);
    }