// scope operator, grabbing a global variable

#include 
#include 

int x = 15 ;

int main()
{
    int x = 25 ;
    cout << x << endl ; //prints out 25 (local to main)
    cout << ::x << endl ; //prints out 15 (the global variable)
}