programming-examples/perl/SystemFunction/Using pack and unpack to convert decimal number to binary number back and forth.pl
2019-11-15 12:59:38 +01:00

4 lines
130 B
Perl

$decimal = 4;
$binary = unpack("B32", pack("N", $decimal));
$newdecimal = unpack("N", pack("B32", $binary));
print $newdecimal;