Login
Remember
Register
Ask a Question
What is a Storage Class? Mention the Storage Classes in C++.
0
votes
asked
Jun 11, 2020
in
C Plus Plus
by
Robindeniel
What is a Storage Class? Mention the Storage Classes in C++.
#c-storage-class
#c
-storage-class
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 11, 2020
by
sharadyadav1986
Storage class determines the life or scope of symbols such as variable or functions.
C++ supports the following storage classes:
Auto
Static
Extern
Register
Mutable
...