answersLogoWhite

0

Storage classes are used to indicate duration and scope of a variable or identifier. Duration indicates the life span of a variable. Scope indicates the visibility of the variable. The static storage class is used to declare an identifier that is a local variable either to a function or a file and that exists and retains its value after control passes from where it was declared. This storage class has a duration that is permanent. A variable declared of this class retains its value from one call of the function to the next. The scope is local. A variable is known only by the function it is declared within or if declared globally in a file, it is known or seen only by the functions within that file. This storage class guarantees that declaration of the variable also initializes the variable to zero or all bits off. The extern storage class is used to declare a global variable that will be known to the functions in a file and capable of being known to all functions in a program. This storage class has a duration that is permanent. Any variable of this class retains its value until changed by another assignment. The scope is global. A variable can be known or seen by all functions within a program.

User Avatar

Wiki User

18y ago

Still curious? Ask our experts.

Chat with our AI personalities

TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
More answers

no they cant ... static says ... hey my var is within file scope. extern says .. var is defined some where else .... static var definition cant be seen by other file via their translation tables.... SO extern with static is an erroneous combination sujay0987@Yahoo.com

User Avatar

Wiki User

15y ago
User Avatar

extern variables are defined in different than the file where the main() is. extern variables can be accessed from other files. Static global variables are visible only within the file.

User Avatar

Wiki User

15y ago
User Avatar

global means: defined here, available from everywhere

external means: defined elsewhere

User Avatar

Wiki User

13y ago
User Avatar

Add your answer:

Earn +20 pts
Q: Can you use extern and static together?
Write your answer...
Submit
Still have questions?
magnify glass
imp