I have a question regarding the saving of characters in C char arrays.
I must read text from a file into a array of type "char" (i cannot use unsigned char). When there are certain characters with a value over 127 (e.g. €, ä, ö, ...) it saves them as negative values, but they do often take more space (e.g. € takes 3 negative values).
How can I calculate these negative values back into unsigned characters. Could someone link me to a tutorial or a guide about that issue?
'€'takes threecharthen you are probably reading a UTF-8 encoded file. – Joachim Pileborg Dec 18 '12 at 13:24