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.