#include #include #include wchar_t mystring[] = L"This is a test of a wide string! OK?\n"; char multib[1000]; int main() { wprintf(mystring); wprintf(L"It has %d (%d) bytes and %d characters\n", (int) strlen((const char *)mystring), sizeof(mystring), (int) wcslen(mystring)); return 0; }