sprintf function and Cyrillic
I ran into the following problem the sprintf(str, "привет") function; encodes in a two-byte format. Each even character = 208 (dec).str[0] char 208 '�?' str[1] char 159 '\237' str[2] char 209 'Ñ' str[3] char 128 '\200' str[4] char 208 '�?' str[5...