This code is exactly as written in the book I'm using, but the example in the book shows that the third instance of cout in main() should provide the integer -10. Instead it provides 10. Why is my program not providing the actual value given to "glob" in the change_global() function? I'm aware the book is outdated, it is the 4th edition of Beginning C++ through Game Programming.
int glob = 10; // global variable
void access_global();
void hide_global();
void change_global();
int main()
{
    cout << "In main() glob is: " << glob << "\n\n";
    access_global();
    hide_global();
    cout << "In main() glob is: " << glob << "\n\n";
    change_global();
    cout << "In main() glob is: " << glob << "\n\n";
    
    return 0;
}
void access_global()
{
    cout << "In access_global() glob is: " << glob << "\n\n";
}
void hide_global()
{
    int glob = 0;
    cout << "In hide_global() glob is: " << glob << "\n\n";
}
void change_global()
{
    int glob = -10;
    cout << "In change_global() glob is: " << glob << "\n\n";
}
