summaryrefslogtreecommitdiff
path: root/3809/CH23/EX23.22/EX23_22.sce
blob: 47bd3900c640ae34e544603d94928d8eef8e6524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Chapter 23, Example 23.22
clc
//Initialisation
x="111011011000100"                   //binary numbr to be convert


//Calculation
z1=bin2dec(x)                  //conversion to decimal
z2=dec2hex(z1)                  //conversion to binary

//Results
printf("Hex of 111011011000100 = %s",z2)