Hi When I debug my codes, and I used to watch the variables and sometime it says 'out of scope'. I could not find it in my manual. Can anyone kindly please explain what is out of scope? Thank you in advance AJ
I guess this is C, not 166 a local variable is 'out of scope' when the function it is in is not executing. Erik
It means the variable that you are trying to view is not accessible from the point in the program that you are currently at. For instance some variables are stored in a register or on the stack and may only exist when you are in a particular function. Outside that function the variable is out of scope.