SlideShare a Scribd company logo
-Reddhi Sekhar Basu
Storage Class Specifiers
The choice of storage class affects a variable’s
storage duration, scope, and linkage.
The storage duration of a variable is the portion of
program execution during which storage for the
variable exists.
The scope of a variable is the portion of the program
text in which the variable can be referenced.
The linkage of a variable determines whether it may
be shared by more than one file in the same program.
Scope
Block
Scope
Function
Scope
Program
Scope
In this section, a block refers to any sets of statements enclosed
in braces ({ and }). A variable declared within a block has block
scope. Thus, the variable is active and accessible from its
declaration point to the end of the block. Sometimes, block
scope is also called local scope.
For example, the variable i declared within the block of the
following main function has block scope:
int main()
{
int i; /* block scope */
.
.
.
return 0;
}
 Usually, a variable with block scope is called a local variable.
Function scope indicates that a variable is active and visible from the beginning to the end
of a function.
In C, only the goto label has function scope. For example, the goto label, start, shown in
the following code portion has function scope:
int main()
{
int i; /* block scope */
.
.
start: /* A goto label has function scope */
.
.
goto start; /* the goto statement */
.
.
return 0;
}
Here the label start is visible from the beginning to the end of the main() function.
Therefore, there should not be more than one label having the same name within the
main() function.
A variable is said to have program scope when it is declared
outside a function. For instance, look at the following code:
int x = 0; /* program scope */
float y = 0.0; /* program scope */
int main()
{
int i; /* block scope */
.
.
return 0;
}
Here the int variable x and the float variable y have program
scope.
Variables with program scope are also called global variables,
which are visible among different files. These files are the
entire source files that make up an executable program. Note
that a global variable is declared with an initializer outside a
function.
Automatic :Storage for the variable
is allocated when the surrounding
block is executed; storage is
deallocated when the block
terminates, causing the variable to
lose its value.
• auto
• register
Static : The variable has a
permanent storage location, hence it
retains its value throughout the
execution of the program.
• static
• extern
External
• The same
variable may
be shared by
several files
Internal
• The variable
is restricted
to a single
file
Storage Class Specifiers
 The auto storage class specifier lets you
explicitly declare a variable with automatic
storage.
 The auto storage class is the default for
variables declared inside a block. A variable x
that has automatic storage is deleted when
the block in which x was declared exits.
 Until C++11, auto had the semantic of a
storage duration specifier.
 Syntax
• auto variable initializer
• auto function -> return type
 You can only apply the auto storage class
specifier to names of variables declared in a
block or to names of function parameters.
However, these names by default have
automatic storage. Therefore the storage
class specifier auto is usually redundant in a
data declaration.
 Specifies that the type of the variable that is
being declared will be automatically deduced
from its initializer. For functions, specifies that
the return type is a trailing return type.
 You can initialize any auto variable except
parameters. If you do not explicitly initialize an
automatic object, its value is indeterminate. If you
provide an initial value, the expression
representing the initial value can be any valid C or
C++ expression. The object is then set to that
initial value each time the program block that
contains the object's definition is entered.
 If automatic variables are not initialized they will
contain garbage.
 Note that if you use the goto statement to jump
into the middle of a block, automatic variables
within that block are not initialized.
 Objects with the auto storage class specifier have
automatic storage duration. Each time a block is
entered, storage for auto objects defined in that
block is made available. When the block is exited,
the objects are no longer available for use. An
object declared with no linkage specification and
without the static storage class specifier has
automatic storage duration.
 If an auto object is defined within a function that is
recursively invoked, memory is allocated for the
object at each invocation of the block.
Storage Class Specifiers
 The word register is borrowed from the world of
computer hardware. Each computer has a certain
number of registers to hold data and perform
arithmetic or logical calculations. Because
registers are located within the CPU (central
processing unit) chip, it's much quicker to access a
register than a memory location. Therefore, storing
variables in registers may help to speed up your
program.
 You can apply this specifier to variables when you
think it's necessary to put the variables into the
computer registers.
 However, the register specifier only gives the
compiler a suggestion. In other words, a variable
specified by the register keyword is not guaranteed
to be stored in a register. The compiler can ignore
the suggestion if there is no register available, or if
some other restrictions have to apply.
 Because of the limited size and number of
registers available on most systems, few variables
can actually be put in registers. If the compiler
does not allocate a machine register for a register
object, the object is treated as having the storage
class specifier auto.
 An object having the register storage class
specifier must be defined within a block or
declared as a parameter to a function.
 You can initialize any register object except
parameters. If you do not initialize an
automatic object, its value is indeterminate. If
you provide an initial value, the expression
representing the initial value can be any valid
C or C++ expression. The object is then set to
that initial value each time the program block
that contains the object's definition is entered.
 Objects with the register storage class
specifier have automatic storage duration.
Each time a block is entered, storage for
register objects defined in that block is made
available. When the block is exited, the
objects are no longer available for use.
 If a register object is defined within a function
that is recursively invoked, memory is
allocated for the variable at each invocation of
the block.
 Loop Control Variables:
int main()
{
/* block scope with the register specifier */
register int i;
. . .
for (i=0; i<MAX_NUM; i++){
/* some statements */
}
. . .
return 0;
}
 NOTE: The declaration of ‘i’ suggests that the compiler store the
variable in a register. Because ‘i’ is intensively used in the for loop,
storing ‘i’ in a register may increase the speed of the code shown
here.
IN C LANGUAGE IN C++ LANGUAGE
 The register storage class
specifier is legal only for
variables declared in a
block. You cannot use it in
global scope data
declarations.
 A register does not have an
address. Therefore, you
cannot apply the address
operator (&) to a register
variable.
 You cannot use the register
storage class specifier when
declaring objects in
namespace scope.
 Unlike C, C++ lets you take
the address of an object with
the register storage class.
For example:
register int i;
int* b = &i; // valid in C++,
but not in C
Storage Class Specifiers
The mutable storage class specifier is
available only in C++
It is used only on a class data member to
make it modifiable even though the
member is part of an object declared as
const.
We cannot use the mutable specifier with
names declared as static or const, or
reference members.
class A
{
public:
A() : x(4), y(5) { };
mutable int x;
int y;
};
int main()
{
const A var2;
var2.x = 345;
// var2.y = 2345;
}
In this example, the compiler would not allow the assignment var2.y
= 2345 because var2 has been declared as const. The compiler will
allow the assignment var2.x = 345 because A::x has been declared
as mutable.

More Related Content

PPTX
Storage Class Specifiers in C++
DOCX
Types of storage class specifiers in c programming
PDF
Function in C++
PPTX
Storage classes
DOC
What is storage class
PPTX
Storage Class in C Progrmming
PPT
STORAGE CLASSES
PPTX
Storage class
Storage Class Specifiers in C++
Types of storage class specifiers in c programming
Function in C++
Storage classes
What is storage class
Storage Class in C Progrmming
STORAGE CLASSES
Storage class

What's hot (20)

PPTX
Storage class in c
PDF
Protocol
PPTX
Storage classes in C
PPT
Java findamentals1
PPT
Java findamentals1
PPT
Java findamentals1
PPTX
Actors model in gpars
PDF
Code Generation Cambridge 2013 Introduction to Parsing with ANTLR4
PPT
Functions in c
PPT
Storage classes
PDF
Java 8 features
PDF
Chapter 11 Function
PDF
Storage class
DOCX
Storage class
PPTX
Operator Overloading and Scope of Variable
PDF
Java 8 by example!
PPTX
Java 8 new features
PPTX
Java 8 Feature Preview
PPTX
PPTX
A Brief Conceptual Introduction to Functional Java 8 and its API
Storage class in c
Protocol
Storage classes in C
Java findamentals1
Java findamentals1
Java findamentals1
Actors model in gpars
Code Generation Cambridge 2013 Introduction to Parsing with ANTLR4
Functions in c
Storage classes
Java 8 features
Chapter 11 Function
Storage class
Storage class
Operator Overloading and Scope of Variable
Java 8 by example!
Java 8 new features
Java 8 Feature Preview
A Brief Conceptual Introduction to Functional Java 8 and its API
Ad

Similar to Storage Class Specifiers (20)

PPTX
Storage classes
PPTX
Storage classes in C
PPTX
Storage classes in c language
PPTX
Storage classes in c language
PPT
S torage class in C
PPTX
Storage class
PPT
Storage classes
PPT
Storage classes
PDF
Terms and Definitions.pdf
PPTX
Storage Classes and Functions
PPT
C Storage Classes VSN
DOC
5.program structure
PPTX
STORAGE CLASS.pptx
PPTX
Storage_classes_and_Scope_rules.pptx
PPT
Storage classes
PDF
Advanced C Programming Notes
PDF
Storage classes arrays & functions in C Language
PPTX
Storage classes
PPT
Lecture 13 - Storage Classes
PPTX
Storage class in C Language
Storage classes
Storage classes in C
Storage classes in c language
Storage classes in c language
S torage class in C
Storage class
Storage classes
Storage classes
Terms and Definitions.pdf
Storage Classes and Functions
C Storage Classes VSN
5.program structure
STORAGE CLASS.pptx
Storage_classes_and_Scope_rules.pptx
Storage classes
Advanced C Programming Notes
Storage classes arrays & functions in C Language
Storage classes
Lecture 13 - Storage Classes
Storage class in C Language
Ad

Recently uploaded (20)

PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Basic Mud Logging Guide for educational purpose
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Sports Quiz easy sports quiz sports quiz
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
master seminar digital applications in india
PDF
Insiders guide to clinical Medicine.pdf
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
Complications of Minimal Access Surgery at WLH
Renaissance Architecture: A Journey from Faith to Humanism
O5-L3 Freight Transport Ops (International) V1.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
Basic Mud Logging Guide for educational purpose
human mycosis Human fungal infections are called human mycosis..pptx
Sports Quiz easy sports quiz sports quiz
PPH.pptx obstetrics and gynecology in nursing
Pharmacology of Heart Failure /Pharmacotherapy of CHF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
master seminar digital applications in india
Insiders guide to clinical Medicine.pdf
O7-L3 Supply Chain Operations - ICLT Program
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
2.FourierTransform-ShortQuestionswithAnswers.pdf

Storage Class Specifiers

  • 3. The choice of storage class affects a variable’s storage duration, scope, and linkage. The storage duration of a variable is the portion of program execution during which storage for the variable exists. The scope of a variable is the portion of the program text in which the variable can be referenced. The linkage of a variable determines whether it may be shared by more than one file in the same program.
  • 5. In this section, a block refers to any sets of statements enclosed in braces ({ and }). A variable declared within a block has block scope. Thus, the variable is active and accessible from its declaration point to the end of the block. Sometimes, block scope is also called local scope. For example, the variable i declared within the block of the following main function has block scope: int main() { int i; /* block scope */ . . . return 0; }  Usually, a variable with block scope is called a local variable.
  • 6. Function scope indicates that a variable is active and visible from the beginning to the end of a function. In C, only the goto label has function scope. For example, the goto label, start, shown in the following code portion has function scope: int main() { int i; /* block scope */ . . start: /* A goto label has function scope */ . . goto start; /* the goto statement */ . . return 0; } Here the label start is visible from the beginning to the end of the main() function. Therefore, there should not be more than one label having the same name within the main() function.
  • 7. A variable is said to have program scope when it is declared outside a function. For instance, look at the following code: int x = 0; /* program scope */ float y = 0.0; /* program scope */ int main() { int i; /* block scope */ . . return 0; } Here the int variable x and the float variable y have program scope. Variables with program scope are also called global variables, which are visible among different files. These files are the entire source files that make up an executable program. Note that a global variable is declared with an initializer outside a function.
  • 8. Automatic :Storage for the variable is allocated when the surrounding block is executed; storage is deallocated when the block terminates, causing the variable to lose its value. • auto • register Static : The variable has a permanent storage location, hence it retains its value throughout the execution of the program. • static • extern
  • 9. External • The same variable may be shared by several files Internal • The variable is restricted to a single file
  • 11.  The auto storage class specifier lets you explicitly declare a variable with automatic storage.  The auto storage class is the default for variables declared inside a block. A variable x that has automatic storage is deleted when the block in which x was declared exits.  Until C++11, auto had the semantic of a storage duration specifier.  Syntax • auto variable initializer • auto function -> return type
  • 12.  You can only apply the auto storage class specifier to names of variables declared in a block or to names of function parameters. However, these names by default have automatic storage. Therefore the storage class specifier auto is usually redundant in a data declaration.  Specifies that the type of the variable that is being declared will be automatically deduced from its initializer. For functions, specifies that the return type is a trailing return type.
  • 13.  You can initialize any auto variable except parameters. If you do not explicitly initialize an automatic object, its value is indeterminate. If you provide an initial value, the expression representing the initial value can be any valid C or C++ expression. The object is then set to that initial value each time the program block that contains the object's definition is entered.  If automatic variables are not initialized they will contain garbage.  Note that if you use the goto statement to jump into the middle of a block, automatic variables within that block are not initialized.
  • 14.  Objects with the auto storage class specifier have automatic storage duration. Each time a block is entered, storage for auto objects defined in that block is made available. When the block is exited, the objects are no longer available for use. An object declared with no linkage specification and without the static storage class specifier has automatic storage duration.  If an auto object is defined within a function that is recursively invoked, memory is allocated for the object at each invocation of the block.
  • 16.  The word register is borrowed from the world of computer hardware. Each computer has a certain number of registers to hold data and perform arithmetic or logical calculations. Because registers are located within the CPU (central processing unit) chip, it's much quicker to access a register than a memory location. Therefore, storing variables in registers may help to speed up your program.  You can apply this specifier to variables when you think it's necessary to put the variables into the computer registers.
  • 17.  However, the register specifier only gives the compiler a suggestion. In other words, a variable specified by the register keyword is not guaranteed to be stored in a register. The compiler can ignore the suggestion if there is no register available, or if some other restrictions have to apply.  Because of the limited size and number of registers available on most systems, few variables can actually be put in registers. If the compiler does not allocate a machine register for a register object, the object is treated as having the storage class specifier auto.
  • 18.  An object having the register storage class specifier must be defined within a block or declared as a parameter to a function.  You can initialize any register object except parameters. If you do not initialize an automatic object, its value is indeterminate. If you provide an initial value, the expression representing the initial value can be any valid C or C++ expression. The object is then set to that initial value each time the program block that contains the object's definition is entered.
  • 19.  Objects with the register storage class specifier have automatic storage duration. Each time a block is entered, storage for register objects defined in that block is made available. When the block is exited, the objects are no longer available for use.  If a register object is defined within a function that is recursively invoked, memory is allocated for the variable at each invocation of the block.
  • 20.  Loop Control Variables: int main() { /* block scope with the register specifier */ register int i; . . . for (i=0; i<MAX_NUM; i++){ /* some statements */ } . . . return 0; }  NOTE: The declaration of ‘i’ suggests that the compiler store the variable in a register. Because ‘i’ is intensively used in the for loop, storing ‘i’ in a register may increase the speed of the code shown here.
  • 21. IN C LANGUAGE IN C++ LANGUAGE  The register storage class specifier is legal only for variables declared in a block. You cannot use it in global scope data declarations.  A register does not have an address. Therefore, you cannot apply the address operator (&) to a register variable.  You cannot use the register storage class specifier when declaring objects in namespace scope.  Unlike C, C++ lets you take the address of an object with the register storage class. For example: register int i; int* b = &i; // valid in C++, but not in C
  • 23. The mutable storage class specifier is available only in C++ It is used only on a class data member to make it modifiable even though the member is part of an object declared as const. We cannot use the mutable specifier with names declared as static or const, or reference members.
  • 24. class A { public: A() : x(4), y(5) { }; mutable int x; int y; }; int main() { const A var2; var2.x = 345; // var2.y = 2345; } In this example, the compiler would not allow the assignment var2.y = 2345 because var2 has been declared as const. The compiler will allow the assignment var2.x = 345 because A::x has been declared as mutable.