I am using Codeblocks 17.12 and have already set compiler settings to C++11 standard. I am studying from Bjarne Stroustrup\'s book \"Programming - Principles and Practice us
Actually std_lib_facilities.h
is created by Bjarne Stroustrup to help people who are very beginners in programming.
You can also find it from his website: std_lib_facilities.h
So this header file may not exist in your system. Bjarne Stroustrup also knows you may get error so he tells in his book to replace it with:-
//these header files are equivalent to std_lib_facilities.h
#include
#include
#include
#include
using namespace std;
Hope this helps(^人^)