Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why uninitialized variable print a strange negative value ?

int x;
cout << x << endl;
share|improve this question
7  
Because it's uninitialized. It's whatever bytes happen to be at that place in memory already. – Wyzard Apr 28 '12 at 16:36
1  
basically that x points to a memory location which could have previously been filled. You are probably seeing that value. – Hunter McMillen Apr 28 '12 at 16:36
because that variable is actually a location in the system memory somewhere, and unless YOU put something into that location, you'll get whatever garbage is left in that spot from the LAST time that memory location was used. – Marc B Apr 28 '12 at 16:36
@Wyzard: " It's whatever bytes happen to be" Actually this isn't right either. During debug build compiler can fill unitialized variables with some value (0xcccccccc). So there's "some" value in unitialized variable, but it is hard to say what it'll be. – SigTerm Apr 28 '12 at 16:41

3 Answers

up vote 12 down vote accepted

What you're doing (reading the value of an uninitialised variable) is undefined behaviour; anything can happen, from it appearing to work, to printing random values, to crashing, to buying pizza with your credit card.

share|improve this answer
3  
If only it could buy me a pizza without a credit card, I would execute the above program very often :P – KingsIndian Apr 28 '12 at 16:42
4  
Yeah, but since its UB, you couldn't predict the toppings. – Robᵩ Apr 28 '12 at 17:25

An uninitialized variable is a variable that is declared but is not set to a definite known value before it is used. It will have some value, but not a predictable one.

share|improve this answer
1  
Formally, it has an "indeterminate value", meaning that even trying to read it may fail (in a more or less spectacular way). – Bo Persson Apr 29 '12 at 15:30

When a variable is not initialized , it shows you "Garbage Value". What that mean is it can be any arbitrary number from anywhere, may be from another running application or random number from big pool of memory.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.