Give the general syntax of class template-00509
This subjective question is related to the book/course vu cs304 Object Oriented Programming. It can also be found in vu cs304 Mid Term Solved Past Paper No. 1.
Question 1: Give the general syntax of class template.
template <class T>
class class-name()
{
definition of class
};
Page No.29
Answer:
Syntax of class template:template <class T>
class class-name()
{
definition of class
};
Page No.29