Variable hiding between local and global variable - C++ Function

C++ examples for Function:Global Variable

Description

Variable hiding between local and global variable

Demo Code

#include <iostream>
using namespace std;
double number = 42.8;       // a global variable named number
int main()/*from ww  w .  jav  a2  s  .  c om*/
{
   double number = 26.4;     // a local variable named number
   cout << "The value of number is " << number << endl;
   return 0;
}

Result


Related Tutorials