I\'m flummoxed by how to convert from a binary value to a char in c.
For example, let\'s say I have 01010110 and want to print the corresponding letter \'V\' from t
Did something slightly different:
From the binary, I mathematically calculated the int and simply casted the int into a char.
int i; char c = (char)i;