Advertisement
avr39ripe

cppUkrLanguageInConsole

May 26th, 2021
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3.  
  4. int main()
  5. {
  6.     setlocale(LC_ALL, "uk_UA");
  7.     SetConsoleCP(1251);
  8.     SetConsoleOutputCP(1251);
  9.  
  10.     std::cout << "Привіт,український світ!\n";
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement