I\'m a little bit confused. As far as I know, if you declare an int in C, without initializing it, for e.g: int x;
int x;
so its value is indeterminate. So if
It's undefined behaviour, meaning that anything could happen. Literally anything. The behavior is just not defined.