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("
The value is $x1");

I didnt get constant output?

Answer Posted / chaitu

use the following code.

<code>

use bigint;

my $r = 0x234;

my $t = 0x345;

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

print $x1->as_hex;

</code>

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

No New Questions to Answer in this Category !!    You can

Post New Questions

Answer Questions in Different Category