I'm a tad confused between what is and is not a Constant Expression in C, even after much Googleing. Could you provide an example of something which is, and which is not, a Constant Expression in C?
|
feedback
|
|
A constant expression can be evaluated at compile time. That means it has no variables in it. For example:
is a constant expression. Something like:
is not, assuming | |||||||
feedback
|
|
There is another subtlety to constant expressions. There are some things that are known to the compiler, but cannot be known to the preprocessor. For example In that instance you cannot simply say | |||||
feedback
|
|
Nobody seems have mentioned yet another kind of constant expression: address constants. The address of an object with static storage duration is an address constant, hence you can do this kind of thing at file scope:
String literals define arrays with static storage duration, so this rule is also why you can do this at file scope:
| |||
feedback
|
|
Another fun little wrinkle: in C, the value of an 'enum' is a constant, but may only be used after the declaration of the 'enum' is complete. The following, for example, is not acceptable in standard C, though it is acceptable in C++:
enum {foo=19, bar, boz=bar+5;};
It could be rewritten:
enum {foo=19, bar}; enum {boz=bar+5;};
though this would end up defining multiple different enumeration types, rather than one which holds all the values. | |||
|
feedback
|
|
Also | |||
|
feedback
|
|
Any single-valued literal is a constant expression.
(String literals are weird, because they're actually arrays. Seems Most operators (sizeof, casts, etc) applied to constants or types are constant expressions.
Any expression involving only constant expressions is itself also a constant expression.
Any expression involving function calls or non-constant expressions is usually not a constant expression.
Any macro's status as a constant expression depends on what it expands to.
I originally had some stuff in here about | |||||||||||
feedback
|