“std_lib_facilities.h” showing error

前端 未结 6 1691
一整个雨季
一整个雨季 2020-12-20 20:03

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

6条回答
  •  轮回少年
    2020-12-20 20:22

    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(^人^)

提交回复
热议问题