✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що надрукує програма?
#include <iostream>
template<typename T>
T mul(T a, T b) { return a * b; }
int main() {
std::cout << mul<double>(2, 4.5);
}