List of standard header files in C and C++

前端 未结 4 1374
不思量自难忘°
不思量自难忘° 2020-11-28 01:40

Where could I find the list of all header files in C and C++?

While I am building a library, I am getting an error like \'tree.h not found\'. I suppose

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 02:31

    I found this Wikipedia entry on the C standard library which contains, lists of C header files and detailed information on which standard they're part of. That gives you a nice historical perspective and some other, similar details.

    Of course that's just C. There's a similar article to be found under "C++ standard library". That also has references to some other libraries which may not be "standard" per se but without which C++ would feel "crippled" to some people used to working with the extensions.

提交回复
热议问题