Problem with wchar_t
Ross Smith
rosss@pharos.co.nz
Tue Apr 22 20:41:00 GMT 2003
> From: Alex Vinokur [mailto:alexvn@connect.to]
>
> wchar_t wch1 = 65;
>
> Why does 'cout << wch1' print '65' (but not 'A') ?
Because you're trying to write a wide character to a narrow character
stream. To get 'A', you'd need to write it to wcout instead of cout.
But you'll find you can't do that anyway, because Cygwin doesn't
support wide characters (it has the wchar_t type, but not much else).
--
Ross Smith ...................... Pharos Systems, Auckland, New Zealand
"It's never too soon to start planning, and, in fact,
it's usually too late." -- Chad Orzel
More information about the Gcc-help
mailing list