Function template syntax - C++ basic concepts
Q. Which one is suitable syntax for function template?- Published on 19 Oct 15a. template< class T> return_type Function_Name(parameters)
b. template< typename T> return_type Function_Name(parameters)
c. both a and b
d. None of these
ANSWER: both a and b