Does the code below compile with gcc and run on your machine?
  Do you see all the right characters? Or most characters appear as
question marks?
  Could you give me details (OS, libc, processor, distro)?

  Do not answer if you are not compiling with gcc. Mingw and Cygwin
answers are welcome.

#include <stdio.h>
#include <wchar.h>

int main (void) {
wchar_t c = 0xa1;

for (;c<0x100;c++) {

fputwc (c,stdout);
fwprintf (stdout, L" (%X) ", c);

} // for

fputwc (L'\n',stdout);

return 0;
}






To unsubscribe, send a blank message to <mailto:[EMAIL PROTECTED]>. 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/c-prog/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to