Advertisement
lofojak

5sPP1Task4

Oct 9th, 2024
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | Source Code | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <windows.h>
  4.  
  5. int main()
  6. {
  7.     SetConsoleOutputCP(1251);
  8.  
  9.     HWND hwnd = GetDesktopWindow();
  10.     HDC dc = GetDC(hwnd);
  11.  
  12.     SelectObject(dc, GetStockObject(DC_BRUSH));
  13.     TextOutA(dc, 1200, 200, "Hello!", 8);
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement