hey all,
I'm writing a C++ console app that converts all the letters of a string to an ALT+NUM equivalent. e.g. e might convert to é (or ALT+1154)
My problem is only with those ALT+NUM combos that have to start with a 0
For example with letter 'd' the only equivalent is Ð (ALT+0208).
cout<<(char)0208;
That clearly won't work so does anyone know another way??
Thanks very much,
Coop