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
You can use strtol() to parse a number on a string. The last argument (in this case 2) is the radix for the conversion.
strtol()
char c = strtol("01010110", (char **)NULL, 2);
More information about this and other number parsing functions here.