This question may be naive, stupid, or an exact duplicate (I couldn't find it).
- is there
constkeyword in C? - since which version?
- are there any semantic and/or syntactic differences between
constin C and C++?
feedback
|
|
There are no syntactic differences between C and C++ with regard to There's at least one more semantical difference, which Ben did not mention. Const-correctness rules of C++ language support the following standard conversion
These initializations are illegal in C.
Generally, when dealing with multi-level pointers, C++ says that you can add const-qualification at any depth of indirection, as long as you also add const-qualification all the way to the top level. In C you can only add const-qualification to the type pointed by the top-level pointer, but no deeper.
| ||||
|
feedback
|
|
The first two questions are answered here: Const in C Yes there are quite a few differences in semantics between
| |||||||
feedback
|
|
Yes, there is a As far as compatibility, here's a paragraph from Harbison & Steele, 5th edition: A top-level declaration that has the type qualifier | |||
|
feedback
|
|
Two other differences:
| |||
|
feedback
|
|
Yes, there's a Syntactically, it can occur in the same places as in C++. Semantically, it's a bit more lax, IIRC. | |||
|
feedback
|
|
The sematic in C is different than in C++, e.g
in file scope would be valid in C++ but not in C. | |||
feedback
|
|
According to ESR, EDIT: This looks like the draft itself -- search for "3.5.3 Type qualifiers". | |||
|
feedback
|
|
Yes, It certainly appears in my copy of "The C Programming Language (2nd Edition)", Kernighan & Ritchie (published in 1988). Relevant extract:
| |||
|
feedback
|
|
There is a "const" keyword in C, and has been for a LONG time. If a variable is designated "const", writes to it are forbidden. Additionally, in some environments, variables declared "const" may be located in a different data segment from other variables. This data segment may offer hardware write protection, and for embedded systems, may be stored in ROM or flash memory rather than in RAM (a very important distinction on some processors which have a lot more ROM or flash than RAM--e.g. 128K flash and 3.5K RAM, or 2K ROM and 96 bytes RAM). Note that the compiler will generally not make any inferences about "const" values or expressions involving them. If I say "const char foo[] = "Hello";" and then later make reference to foo[1], the compiler will load the value (which will most likely be 'e') from wherever foo[] is stored and use the loaded value. Sometimes this usefully allows values to be patched in a compiled code image, but sometimes it just wastes code. If you want to define a number to to be a compile-time "substitutable" constant, the best way, at least for integer constants, may be to use "enum". For example, "enum {woozle=19;}" will cause 19 to be substituted for "woozle" throughout the code. Note that unlike textual substitutions; enum declarations obey proper rules of scope. | |||
|
feedback
|
|
Yes. Here is a good read is about behaviour of const keyword in C. | |||||
|
feedback
|