Can you guys tell me the difference between them?
By the way, is there something called C++ library or C library?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
C++ Standard LibraryandC Standard Libraryare the libraries that the C++ and C Standard define that is provided to C++ and C programs to use. That’s a common meaning of those words, i haven’t ever seen another definition of it, and C++ itself defines it as this:C++ Runtime LibraryandC Runtime Libraryaren’t so equally used. Some say a runtime library is the part that a program uses at runtime (like, the code that implementsstd::type_infoor the code supporting signal handlers) as opposed to stuff that they only use at compile time (like macro definitions). Other people say that a runtime library is one that is linked to a program at load time dynamically, as opposed to statically at compile time, though this use is very seldom. shared library or dynamically linked library are better terms for that.C++ LibraryandC Libraryare very broad terms. They just mean that a library is written in C++ and/or C.The above is not only limited to C++ and/or C. There are python libraries and there is a python Standard Library too.