I am using an old version of MS C++ compiler 1.5 and want to be able to assign a binary value directly to a variable. I know how to assign hex, decimal, long and octal values but not binary. For example:

unsigned char MyVal = 5;

needs to be

unsigned char MyVal = 00000101;

Thanks for any help.