I've reinstalled my windows today because of some bug's.I then installed cygwin and gcc compiler, but when I try to compile some file with -std=c++14 tag it gives me errors. When I replace #include<bits/stdc++.h>
with #include<iostream>
it will process the compiling as well, but I want to use the bits/stdc++.h lib. Can anyone help me fix this?
Asked
Active
Viewed 252 times
1

scrappedcola
- 10,423
- 1
- 32
- 43

sajjad hashemian
- 21
- 2
-
3please include the error scripts in a good format in the question rather than including a snapshot – Ibo Oct 23 '17 at 00:09
-
https://stackoverflow.com/questions/25311011/how-does-include-bits-stdc-h-work-in-c has a few details on why it might no longer be present, even thouhg a previous install did have it. General consensus is to only include the headers you need rather than this blanket include. – scrappedcola Oct 23 '17 at 02:33