I have a requirement to populate a char/unsigned char array with data. However, certain values in the middle are sourced from short/int types. This is the scenario that transpires in such a case. Code: int foo = 15; //0x0000000F unsigned char buffer[100]={0}; .. memcpy(&buffer[of...