✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int a = 7; // в глобальному просторі
void f () {static int a; a + = 5; }
і в функції main() виконується
f (); cout << a;
то якою буде результат?
(C++)