When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

ashuvssut's blog

By ashuvssut, history, 4 years ago, In English

This is just a method i used to make me able to include bits/stdc++.h in visual studio 2019. for those had minGW installed on PC :

C:\MinGW\mingw32\lib\gcc\mingw32\4.8.1\include\c++\mingw32\bits

copy this 'bits' folder and then go to this address

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include

and paste your folder. go to your visual studio project and type bits you will see the auto-complete for the library and then choose bits\stdc++.h

for those don't have minGW: you should write your own header file and include all libraries in it then go to

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include

i have added the bits folder to oneDrive you can fetch the file here-> https://1drv.ms/u/s!ApWwSDDAnudpgnxstyu5i_11-5mq?e=P75vtv

make new folder name it "bits" and name the header file stdc++.h then paste it in "bits" folder.

Hope this helps!

Happy coding

  • Vote: I like it
  • +6
  • Vote: I do not like it

| Write comment?
»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

YEES, now I don’t have to write a lot of libraries!

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

unordered_set is not working but set is working. any solution?

  • »
    »
    4 years ago, # ^ |
    Rev. 2   Vote: I like it +1 Vote: I do not like it

    You have to include it #include unordered_set same for unordered_map