What do you mean by storage classes?
Storage Classes are used to describe the features of a variable/function. These features basically include the scope, visibility and life-time which help us to trace the existence of a particular variable during the runtime of a program.
| Is This Answer Correct ? | 0 Yes | 0 No |
The "virtual" specifier in a member function enables which one of the following? a) Monmorphism b) Late binding c) Metamorphism d) Solomorphism e) Inheritance
Differentiate between declaration and definition in C++?
Implement strcmp
Which operations are permitted on pointers?
What's c++ used for?
What parameter does the constructor to an ofstream object take?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is the use of this pointer in c++?
Write about an iterator class?
how many trys can we write in one class
How delete [] is different from delete?
Can a constructor be private?