✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Identify C++ keywords in the following function template definition:
template <typename T>
T cube(T value) {
return value*value*value;
}