fork(1) download
  1. #include <stdio.h>
  2. #include <wchar.h>
  3. #include <locale.h>
  4.  
  5. int main(void) {
  6.  
  7. const wchar_t* s = L"Александр Семенюк";
  8. setlocale(LC_ALL, "en_US.UTF-8");
  9. wprintf(L"%lc%lc\n", s[0], *(wcschr(s, L' ') + 1));
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 11096KB
stdin
Standard input is empty
stdout
АС