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

Write a note about the virtual member function?

0 Answers  


Describe new operator and delete operator?

0 Answers  


How many keywords are used in c++?

0 Answers  


Explain abstraction.

0 Answers  


Explain about Virtual Function in C++?

0 Answers  






I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

0 Answers  


Copy Linked List using recursive function?

2 Answers   Persistent,


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

0 Answers  


What happens if an exception is throws from an object's constructor and from object's destructor?

3 Answers   TCS,


What is constant in c++ with example?

0 Answers  


Write about the retrieval of n number of objects during the process of delete[]p?

0 Answers  


What is boyce codd normal form in c++?

0 Answers  


Categories