News

The scope of a global variable is the entire program. The scope of a local variable is the sub-program where it has been declared. Key fact Global variables - accessed by every sub-program or ...
The common practice is to keep global variables to a minimum, because they can be manipulated by any routine in the program at any time. Contrast with local variable. THIS DEFINITION IS FOR ...