News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

wprintf and printf

Started by TimoVJL, October 12, 2010, 10:15:32 AM

Previous topic - Next topic

TimoVJL

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;
}
May the source be with you