✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Какое значение будет иметь переменная после выполнения программы
...
float y = 0;
int main()
{
int i = 0;
float x = 0,
bool b = false;
x = b = i = y = 4.567;
cout<< x <<endl;
}