...
C++ is a general purpose programming language based on the C programming language as described in ISO/IEC 9899:1999 Programming languages — C (hereinafter referred to as the C standard ). In addition to the facilities provided by C, C++ provides additional data types, classes, templates, exceptions, namespaces, operator overloading, function name overloading, references, free store management operators, and additional
library facilities.
Due to the fact that CBecause C++ is based on the C programming language, there is considerable overlap between the guidelines specified by the CERT C Coding Standard, and the ones specified by this standardcoding standard. To reduce the amount of duplicated information, this coding standard focuses on the parts of the C++ programming language which are not wholly covered by the CERT C Coding Standard. Due to Because of C++'s increased focus on types, some rules in C are extended by the CERT C++ Secure Coding Standard. Except where noted, the contents of the CERT C Coding Standard apply equally to code written in C++.
...