Hi there,

I have converted a string into binary for example 'hello' =
01101000 01100101 01101100 01101100 01101111
h e l l o

I have stored this binary in a 2 dimentional array of type int.(Each set of 8 bits is its own array)

I now need to convert this 8 bit binary to ascii (Back to 'hello')

Any thoughts?