+ 4
When you call a variable who wasn't initialized, sometimes they have a default value. Sometime doesn't, and its called Garbage value,
For example:
int a;
print(a);
//this show 6548795132
why? because it had garbage value.
Note : not always happens with int, or some other types.



