C++ examples for Function:Global Variable
Use scope resolution operator to reference global variable.
#include <iostream> using namespace std; double number = 42.5; // a global variable named number int main()//from ww w.j av a2 s.c o m { double number = 26.4; // a local variable named number cout << "The value of number is " << ::number << endl; return 0; }