What do you mean by storage classes?

Answers were Sorted based on User's Feedback



What do you mean by storage classes?..

Answer / hrpynux@gmail.com

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

What do you mean by storage classes?..

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

Post New Answer

More C++ General Interview Questions

When should you use global variables?

1 Answers  


What are the strengths of C++?

1 Answers  


What should main() return in c and c++?

1 Answers  


How const int *ourpointer differs from int const *ourpointer?

1 Answers  


What are the advantage of using register variables?

1 Answers  


What is the best c++ book for beginners?

1 Answers  


When is a template better solution than a base class??

2 Answers   emc2,


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++?

8 Answers   Amazon, Wipro,


How can a '::' operator be used as unary operator?

1 Answers  


What does it mean to declare a member function as virtual?

1 Answers  


How is modularity introduced in C++?

1 Answers   TCS,


Categories