fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4.  
  5. int main(void)
  6. {
  7. wchar_t c = L'á';
  8. fwrite(&c, sizeof(c), 1, stdout);
  9. wchar_t d = u'á';
  10. fwrite(&d, sizeof(d), 1, stdout);
  11. int16_t e = u'á';
  12. fwrite(&e, sizeof(e), 1, stdout);
  13. int16_t f = L'á';
  14. fwrite(&f, sizeof(f), 1, stdout);
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5456KB
stdin
Standard input is empty
stdout
����