C++ official website

Asked 2 years ago, Updated 2 years ago, 25 views

Is there no official website for C++ language like Python?

I'm trying to refer to the standard library, but I can only see the sites that are run by individuals.

c++

2022-09-22 20:27

1 Answers

The C++ language defines standards in ISO, and drafts of standardization progress can be found at http://www.open-std.org/jtc1/sc22/wg21 or https://isocpp.org. A related GitHub repository, https://github.com/cplusplus or https://github.com/isocpp.

All of the contents of the standard library you mentioned are included in the standard document , but the standard document is not only paid, but also has a problem with poor accessibility.

So for a more convenient approach, we have sites like http://cppreference.com and http://www.cplusplus.com.


2022-09-22 20:27

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.