Answers

Question and Answer:

  Home  CGI Perl

⟩ Packing and Unpacking.Hi, I want to get output as 0x23400000345....in the below example How to get?i tried out, but unable to get the answer$r=0x234;$t=0x345;$y=pack(L L,$t,$r);$x1=unpack(L!,pack(P,$y));printf("nThe value is $x1"); I didnt get constant output?

use the following code.

<code>

use bigint;

my $r = 0x234;

my $t = 0x345;

my $x1 = $r << 32 | $t;

print $x1->as_hex;

</code>

 234 views

More Questions for you: