C++ Programmer Question:
Download Questions PDF

Tell us what is a storage class?

C++ Programmer Interview Question
C++ Programmer Interview Question

Answer:

A class that specifies the life and scope of its variables and functions is called a storage class.

In C++ following the storage classes are supported: auto, static, register, extern, and mutable.

Note, however, that the keyword register was deprecated in C++11. In C++17, it was removed and reserved for future use.

Download C++ Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Do you know which access specifier/s can help to achive data hiding in C++?Tell me what is the full form of OOPS?