Quick question-- if in C I write:
int num;
Before I assign anything to num, is the value of num indeterminate?
|
Quick question-- if in C I write:
Before I assign anything to |
||||
| show 2 more comments |
|
Static variables (file scope and function static) are initialized to zero:
Non-static variables (local variables) are indeterminate. Reading them prior to assigning a value results in undefined behavior.
In practice, they tend to just have some nonsensical value in there initially - some compilers may even put in specific, fixed values to make it obvious when looking in a debugger - but strictly speaking, the compiler is free to do anything from crashing to summoning demons through your nasal passages. As for why it's undefined behavior instead of simply "undefined/arbitrary value", there are a number of CPU architectures that have additional flag bits in their representation for various types. A modern example would be the Itanium, which has a "Not a Thing" bit in its registers; of course, the C standard drafters were considering some older architectures. Attempting to work with a value with these flag bits set can result in a CPU exception in an operation that really shouldn't fail (eg, integer addition, or assigning to another variable). And if you go and leave a variable uninitialized, the compiler might pick up some random garbage with these flag bits set - meaning touching that uninitialized variable may be deadly. |
|||||||||||||||||||
|
0 if static or global, indeterminate if storage class is autoC has always been very specific about the initial values of objects. If global or This was the case in pre-C89 compilers and was so specified by K&R and in DMR's original C report. This was the case in C89, see section 6.5.7 Initialization.
This was the case in C99, see section 6.7.8 Initialization.
And finally, as to what exactly indeterminate means, I'm not sure for C89, C99 says:
|
||||
|
|
The value is undefined (or indeterminate to use another English word with the same semantic meaning in this context); it might possibly be simply whatever was previously in the memory location. |
|||||||||||||||||||||
|
|
That depends. If that definition is global (outside any function) then |
|||
|
|
|
It depends on the storage duration of the variable. A variable with static storage duration is always implicitly initialized with zero. As for automatic (local) variables, an uninitialized variable has indeterminate value. Indeterminate value, among other things, mean that whatever "value" you might "see" in that variable is not only unpredictable, it is not even guaranteed to be stable. For example, in practice (i.e. ignoring the UB for a second) this code
does not guarantee that variables So in general, the popular answer that "it is initialized with whatever garbage was in memory" is not even remotely correct. Uninitialized variable's behavior is different from that of a variable initialized with garbage. |
||||
|
|
|
The basic answer is, yes it is undefined. If you are seeing odd behavior because of this, it may depended on where it is declared. If within a function on the stack then the contents will more than likely be different every time the function gets called. If it is a static or module scope it is undefined but will not change. |
|||
|
|
|
As far as i had gone it is mostly depend on compiler but in general most cases the value is pre assumed as 0 by the compliers.
|
|||
|
|
|
We used to demo a debugger in the past looking at an |
|||
|
|
extern int x;However defining always implies declaring. This is not true in C++, with static class member variables one can define without declaring, as the declaration must be in the class definition (not declaration!) and the definition must be outside of the class definition. – bdonlan Oct 20 '09 at 21:36