why to use template classes in c++?
Answer / swati
the template classes are use for the reuse of the data
types which you want to use the program for many times
| Is This Answer Correct ? | 1 Yes | 0 No |
What are generic functions and generic classes?
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
what is ltti
How does polymorphism work?
What are the different forms of polymorphism??
Why is static class not inherited?
what is the use of mutable key word
What is abstraction in oops with example?
how do u initialize the constant variables
What is the default size allocated for array in the statement if size not specified " int a[] "
what is overloading and overriding?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }