Got my first Arduino today and am having a lot of fun making the onboard LED flash (due to a lack of any other electronics at this stage!). I want to convert the binary representation of a char into an array of chars, eg
from:
Char singleLetter = 'h'
to:
Char representLetterInArrayOfBits[] = "1101000"
Thanks for that mike. There's no real reason for wanting to do this other than to learn my way around the language (not done c before) and that it just struck me that I couldn't work out how to do it.