unsigned int someInt = 'MPG3';
someInt will now hold a value of 1297106739. I always thought the compiler would complain if more than 1 character was within single quotes. I would like to know how the compiler is getting this value, and if it's possible to retrieve the char value.
char someChar = someInt;
char someChar = (char)someInt;
They don't work.