175. Template

Question.8

Two developers write the same template differently:

template<typename T> void funcA(T val);
template<class T>    void funcB(T val);

Is there a difference?

Need Help? Refer to the Quick Guide below

Select Answer