Computer Science, asked by sark8alyaanv5i, 1 year ago

Create Templates in C++
How to create templates in C++?

Answers

Answered by Samundeeswari
0
template < class identifier >
function_declaration;
template < typename identifier >
function_declaration;

eg..
class x: public y, protected z
{---------};
where x,y,z are different classes...
Similar questions