in reply to Re: Hexadecimal Exclusive OR
in thread Hexadecimal Exclusive OR
I have executed the following code but getting Integer overflow in hexadecimal number
my $var1 = 0x0000805063008357 ; my $var2 = 0x042426FFFFFFFFFF ; my $result = $var1 ^ $var2; printf "0x%0x\n",$result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Hexadecimal Exclusive OR
by BrowserUk (Patriarch) on Jun 16, 2010 at 13:38 UTC | |
|
Re^3: Hexadecimal Exclusive OR
by cdarke (Prior) on Jun 16, 2010 at 13:28 UTC | |
by almut (Canon) on Jun 16, 2010 at 14:36 UTC | |
|
Re^3: Hexadecimal Exclusive OR
by almut (Canon) on Jun 16, 2010 at 13:39 UTC |