I read in a lot of books the claim that "C is a subset of C++".
Actually some (good?) books say: "C is a subset of C++ except the little Details".
I am interested what these details are. I've never seen one.
|
I read in a lot of books the claim that "C is a subset of C++". I am interested what these details are. I've never seen one. |
||||
|
|
|
If you compare No tentative definitions in C++
int[] and int[N] not compatible (no compatible types in C++)
No K&R function definition style
Nested struct has class-scope in C++
No default int
C99 adds a whole lot of other cases No special handling of declaration specifiers in array dimensions of parameters
No variable length arrays
No flexible array member
No restrict qualifier for helping aliasing analysis
|
|||||||||
|
|
In C, In C++, |
|||||||
|
|
Wikipedia has a good summary of the differences: Compatibility of C and C++ |
|||||||||
|
|
There are plenty of things. Just a simple example (it should be enough to prove C is not a proper subset of C++):
should compile in C but not in C++. |
|||||||||||||||||||||
|
|
C++ has new keywords as well. The following is valid C code but won't compile under C++:
|
|||||||||||||||
|
|
A full detailed list, with citations to the various C and C++ standards, can be found here: Incompatibilities between ISO C and ISO C++. |
|||
|
|
|
In C++, if you declare a
In C, this won't work, because types thus declared live in their own distinct namespaces. Thus, you have to write:
Notice the presence of
Consequently, you can have several types of different kinds named the same in C, since you can disambiguate:
In C++, however, while you can prefix a |
|||||||
|
|
This also depends on what variety of C you're using. Stroustrup made C++ as compatible as he could, and no more compatible, with the 1989 ANSI and 1990 ISO standards, and the 1995 version changed nothing. The C committee went in a somewhat different direction with the 1999 standard, and the C++ committee has changed the next C++ standard (probably out next year or so) to conform with some of the changes. Stroustrup lists incompatibilities with C90/C95 in Appendix B.2 of "The C++ Programming Language", Special Edition (which is 3rd edition with some added material): 'a' is an The sizeof an enum is C++ has // comments to end of line, C doesn't (although it's a common extension). In C++, a C++ is fussier about types in general. It won't allow an integer to be assigned to an C allows implicit In C, it's possible to jump from outside a block to inside using a labeled statement. In C++, this isn't allowed if it skips an initialization. C is more liberal in external linkage. In C, a global Many C++ keywords are not keywords in C, or are There are also some older features of C that aren't considered good style any more. In C, you can declare a function with the argument definitions after the list of arguments. In C, a declaration like That seems to cover everything from Stroustrup. |
|||||||||||
|
|
The single biggest difference I think is that this is a valid C source file:
Note that I haven't declared Aside from language differences, C++ also makes some changes to the library that it inherited from C, e.g. some functions return |
|||||||||||||
|
See also the C++ FAQ entry. |
||||
|
|
|
C compilers generally allowed a little corner cutting that C++ doesn't. C++ is much more strict than C. And generally, some of these differences are compiler-dependant. g++ allows some things that the Intel C++ compiler doesn't, for instance. Even fairly well written C code won't compile with a modern C++ compiler. |
|||
|
|
|
Standard C++ contains all information with samples. |
|||
|
|
|
You cannot compare languages only by syntax. If you do that maybe you can see C as a subset of C++. In my opinion the fact that C++ is OO (and C isn't) is enough to say that C and C++ are different languages. |
|||
|
|
If you use gcc, you can use the warning (This doesn't strictly answer the question, but folk might like it). |
|||
|
|
|
A number of the answers here cover syntax differences that would cause C++ compilers to fail on C89 (or C99) source code. However, there are some subtle language differences that are legal in both languages but that would produce different behavior. The |
|||
|
|
|
One of the original design goals of C++ was to be a superset of C so every valid C program will be a valid C++ program (the only reason C++ is based on the C syntax is to provide an easy migration path from the then most popular programing language). but that was a long time ago and both the C and C++ standards have advanced a long way and in different directions - so it's no longer true |
|||||||||||||||||||
|