How to connect the library

How to connect the library

por Вася Пупкин -
Número de respuestas: 1

Hello.
I write the following code in C++:

#include <iostream>
#include <windows.h> 
using namespace std;
int main()
{
    return 0;
}

and get an error:
__tester__.cpp:2:10: fatal error: windows.h: No such file or directory
    2 | #include <windows.h>
Tell me how to connect the windows.h library. Thanks.