Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    # File displayPipeTracer2.pl
    ...
    
    my $maskResult = hex($testString) & 0x400000000000000000000000;
    print "Mask Result: $maskResult\n";
    
  2. or download this
    Integer overflow in hexadecimal number at script.pl line 7.
    Hexadecimal number > 0xffffffff non-portable at script.pl line 7.
    Integer overflow in hexadecimal number at script.pl line 7.
    Hexadecimal number > 0xffffffff non-portable at script.pl line 7.
    Mask Result: 4294967295
    
  3. or download this
    #!/usr/bin/perl -w
    # File displayPipeTracer2.pl
    ...
    
    my $maskResult = $testString & 0x400000000000000000000000;
    print "Mask Result: $maskResult\n";