This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Out of Scope

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

Parents
  • 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.

Reply
  • 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.

Children
No data