How many storage classes are available in C++?



How many storage classes are available in C++?..

Answer / hrpynux@gmail.com

There are primarily four storage classes in C, viz. automatic, register, static, and external.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


Is c++ a difficult language?

0 Answers  


what is the use of void main() in C++ language?

0 Answers  


What is an inclusion guard?

0 Answers  


class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;

4 Answers   Manhattan,






what is VOID?

0 Answers  


What are references in c++? What is a local reference?

0 Answers  


Differentiate between realloc() and free().

0 Answers  


Evaluate !(1&&1||1&&0) a) Error b) False c) True

0 Answers  


Explain data encapsulation?

0 Answers  


What is meant by forward referencing and when should it be used?

0 Answers  


Does improper inheritance have a potential to wreck a project?

0 Answers  


Categories