There is a template function
template <class T> T max (T a, T b) 
{ 
    if a<b return b;
           return a;
}
What specialization will the compiler create when invoking max( 'a' , 3 )?
Explanation
The parameter of the template function cannot be deduced from the arguments of the function template by the types of arguments for its call. It may be either int or char.

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести