template<class ItemType> class Container { /* ... */ };
void AddItem(ItemType item);
template<class ItemType> void AddItem(ItemType item);
template<ItemType> void AddItem(ItemType item);
void AddItem(class ItemType item);
void AddItem(typename ItemType item);
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment