April 2022
Intermediate to advanced
528 pages
13h 34m
English
Cippi mixes C with C++ code.
Due to the shared history of C and C++, both languages are closely related. Because neither of them is a subset of the other, you have to know a few rules to mix them.
This section in the C++ Core Guidelines consists of three rules. These three rules cover the typical issues encountered when dealing with legacy code.
CPL.1 Prefer C++ to C
Without further ado, here is the reason the C++ Core Guidelines prefer C++: “C++ provides better type checking and more notational support [than C]. It provides better support for high-level programming and often generates faster code.”
CPL.2 ...
Read now
Unlock full access