Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include <fcntl.h>
  4. #include <io.h>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. _setmode(_fileno(stdout), _O_U8TEXT);
  11. wchar_t z = _getwch();
  12. wcout << z;
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement