What is a storage class in C++



What is a storage class in C++..

Answer / nashiinformaticssolutions

Certain characteristics of variables or functions are defined by storage classes. These characteristics include lifetime, or how long a variable is active, and visibility, or how easily a variable may be accessed from various parts of the program.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 Answers  


How does code-bloating occur in c++?

1 Answers  


What are the advantages of using friend classes?

1 Answers  


Which is better c++ or java?

1 Answers  


What is a class template?

1 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


What is "mutable" keyword?

2 Answers   Infosys, Teradata,


What are the advantages of prototyping?

1 Answers  


Difference between Operator overloading and Functional overloading?

10 Answers   HP,


Define a conversion constructor?

1 Answers  


whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };

5 Answers   Huawei,


What is == in programming?

1 Answers  


Categories