> I would like to know if the g++ compiler supports wstring and wcout. I > am trying to use wide character string on a Linux platform. g++ currently supports neither. You can define wstring yourself as basic_string<wchar_t>. There is a new C++ library being developed that supports both; please look for libstdc++ v3 on sourceware. Regards, Martin