Pelles C forum

C language => Expert questions => Topic started by: TimoVJL on October 12, 2010, 10:15:32 AM

Title: wprintf and printf
Post by: TimoVJL on October 12, 2010, 10:15:32 AM
Why that "normal" isn't printed at all?

Code: [Select]
#include <stdio.h>

int main(int argc, char *argv[])
{
wprintf(L"wide\n");
printf("normal\n");
return 0;
}
Title: Re: wprintf and printf
Post by: JohnF on October 12, 2010, 11:44:25 AM
See here

http://forum.pellesc.de/index.php?topic=878.0 (http://forum.pellesc.de/index.php?topic=878.0)

John