Which function should I use to output text to the \"Output\" window in Visual Studio?
I tried printf() but it doesn\'t show up.
printf()
#define WIN32_LEAN_AND_MEAN #include wstring outputMe = L"can" + L" concatenate\n"; OutputDebugString(outputMe.c_str());