I'm trying to use the <bits/stdc++.h> header file in vs code for c++, which basically includes all the header files necessary if im not wrong (I'm pretty new to c++ so i might be wrong).
Now, whenever I try to compile a simple program it returns with the errors :-
file path for mingw - C:/msys64/mingw64/include/c++/13.1.0/cuchar:97:11: followed by the errors shown below.
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "Hello World!";
return 0;
}
If I just include iostream it works fine.