C++ Programmer Question:
Download Questions PDF

Explain what do you mean by storage classes?

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

Answer:

Storage class are used to specify the visibility/scope and life time of symbols(functions and variables). That means, storage classes specify where all a variable or function can be accessed and till what time those variables will be available during the execution of program.

Download C++ Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Tell us what is the use of volatile keyword in c++? Give an example?Tell me is it possible to get the source code back from binary file?