Differentiate between a template class and class template?
Answer / beena
Template class:
A generic definition or a parameterized class not instantiated until the client provides the needed information. It’s jargon for plain templates.
Class template:
A class template specifies how individual classes can be constructed much like the way a class specifies how individual objects can be constructed. It’s jargon for plain classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the use of this pointer?
wap to accept 10 numbers & display the number of odd and even numbers??
What is the full name of logo?
What is the full form of stl in c++?
What is the difference between ++ count and count ++?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
How much is c++ certification?
Can we use clrscr in c++?
What is virtual destructor? What is its use?
What is the difference between containment and delegation?
How many different levels of pointers are there?
What do you mean by static variables?