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