Why that "normal" isn't printed at all?
#include <stdio.h>
int main(int argc, char *argv[])
{
wprintf(L"wide\n");
printf("normal\n");
return 0;
}
See here
http://forum.pellesc.de/index.php?topic=878.0 (http://forum.pellesc.de/index.php?topic=878.0)
John