You are on page 1of 1

Can Global Variables be dangerous ?


In a small code, we can track values of global variables. But if the code size grows, they make code less understandable (hence less
maintainable). It becomes di cult to track which function modi ed the value and how.

// A CPP program to demonstrate that a 


// global variables make long code less
// maintainable.
  
int c = 1;
  
int fun1()
{
   // 100 lines of code that
   // may modify c and also
   // call fun2()
}
  
void fun2()
{
   // 100 lines of code that
   // may modify c and also
   // call fun1()
}
  
void main()
{
    // 1000 lines of code
  
    c = 0;
  
    // 1000 lines of code
  
    // At this point, it becomes difficult
    // to trace value of c 
    if (c == 1)
        cout << "c is 1" << endl 
    else
        cout << "c is not 1 << endl

In above code, we notice one of the biggest problem of global variable that is Debugging. It means if we trying to gure out where that
variable c has changed between thousands of lines of code is very di cult job.
In multihreaded environment a global variable may change more than once (in different execution orders) and cause more problems.
Global variables are generally used for constants. Using them for non-const values is not recommended.

You might also like