after attempting to upload morse code translator i recieve error: empty character constant. what does that mean?
You likely have something like
char c = '';
A character constant with nothing contained between the quotes will throw an error, because the compiler can't correctly translate nothing to an ASCII ordinal.
davey25826:
after attempting to upload morse code translator i recieve error: empty character constant. what does that mean?
It means you haven't shown this alleged code.