NO

Author Topic: wprintf and printf  (Read 3008 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
wprintf and printf
« 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;
}
May the source be with you

JohnF

  • Guest
Re: wprintf and printf
« Reply #1 on: October 12, 2010, 11:44:25 AM »