Is it possible to have char *s to work with utf8 encoding in C++ (VC2010)?
char *
For example if my source file is saved in utf8 and I write something like thi
See this MSDN article which talks about converting between string types (that should give you examples on how to use them). The strings types that are covered include char *, wchar_t*, _bstr_t, CComBSTR, CString, basic_string, and System.String:
How to: Convert Between Various String Types