✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено на екран в результаті наступного виразу?
struct my
{
int a, b;
} m1;int func (my f) {
return fa + f.b ++;
}int main ()
{
m1.a = 5; m1.b = 10; cout << func (m1);return 0;
}
(C++)