Static Variables

Another class of local variable is the static type. A static can only be accessed from the function in which it was declared, like a local variable. The static variable is not destroyed on exit from the function, instead its value is preserved, and becomes available again when the function is next called. Static variables are declared as local variables, but the declaration is preceeded by the word static.


static int counter;

Static variables can be initialised as normal, the initialisation is performed once only, when the program starts up.


  Go to External Variables     Go to Index               Go to Constants