Possible Duplicate:
Difference between 'global' and 'static global'
What is the difference between statements 1 and 2 :-
#include <stdio.h>
//In the global declaration area
static int a; // 1.
int b; // 2.
Thanks for help.
What is the difference between statements 1 and 2 :-
Thanks for help. |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
A |
|||||
|
|
Both are variable definitions, however, the |
|||
|
They are both in memory for the entire lifetime of the program. The variable that is declared static only has scope in the file in which it is declared where as the variable declared without static can be accessed from other files using an extern declaration. Original source - http://bytes.com/topic/c/answers/860211-global-variable-static-global-variable |
|||||
|
|
|
|||
|
|
A static variable's life extends across the lifetime of the program. However, scope rules still apply. If you define your static variable outside of a method (normally at the beginning of the class) your variable will be available from anywhere within that class. You can't change the value of these objects. They're normally used for storing things like API keys. |
|||
|
|
C99
|
|||||
|