What do you mean by storage classes?
Answers were Sorted based on User's Feedback
Storage Classes are used to describe the features of a variable/function. These features basically include the scope, visibility and life-time which help us to trace the existence of a particular variable during the runtime of a program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / Ranjeet Kaur
"In C++, storage classes are used to specify the lifetime and visibility of variables. They include keywords such as class (default), static, register, extern, and auto."
| Is This Answer Correct ? | 0 Yes | 0 No |
When should you use global variables?
What are the strengths of C++?
What should main() return in c and c++?
How const int *ourpointer differs from int const *ourpointer?
What are the advantage of using register variables?
What is the best c++ book for beginners?
When is a template better solution than a base class??
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
What are the differences between a struct in C and in C++?
How can a '::' operator be used as unary operator?
What does it mean to declare a member function as virtual?
How is modularity introduced in C++?