I switched compilers on a lark. I've gotten rid of my error messages. I have this code:
The compiler is very upset over Mike. It does not like multi-byte initial values. Since d2x is defined as a string of bytes, how do I get an initial value?Code:struct sdata_2 {
char d21;
char d22;
char d23;
char d24;
char d2x[20];
struct sdata_2 sdata2 = { 'a', 'b', 'c', 'd', 'Mike' }
TIA

