✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що відбудеться під час компіляції?
template<typename T>
T* ptr(T& x) { return &x; }
int main() {
int a = 5;
auto p = ptr(a);
}