✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що відобразить команда виведення при виконанні наступного фрагменту коду?float x=1,у=2;
float *ptr;
ptr = &y;
ptr = &x;
cout << *ptr<< endl;