So, it's a classic but I can't find a decisive answer anywhere.
Suppose I've an integer 'x'. I'm performing the "++" operation in a loop.
Something like this:
int x=0;
while(true){
x++;
print(x);
}
I suppose the output will rotate form some max value to some min value, but what those values are?
And does it also depend on the programming language in use?