template<class T, class U>
T func(T a, T b, U c)
{
if(c == '+' || c){
return a+b;
}
else if(c == '-' || !c){
return a-b;
}
}
a) replace templates T, U with auto keyword
b) replace templates T, U with generic keyword
c) replace templates T, U with temp keyword
d) replace templates T, U with GEN_TEMP keyword
What type can be used to replace templates from this function?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What type can be used to replace templates from this function?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!