This function converts a binary value to a string value.
B2C(binstring)
binstring − This is the binary value which needs to be converted to a string.
The corresponding string value for the input-ed binary value.
/* Main program */ options arexx_bifs say b2c('01100011')
When we run the above program, we will get the following result.
c