Static variables are those variables which persist their value
throughout your project. Static veriable also known as class
variable.Although there are the class variables so when the class load
in the memory the static memory will be allocated.
Example
Public static int c;
Example
Public static int c;
Comments
Post a Comment