Open In App

Can Global Variables be dangerous ?

Improve
Improve
Like Article
Like
Save
Share
Report

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 difficult to track which function modified the value and how.

C++




// A C++ 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 figure out where that variable c has changed between thousands of lines of code is very difficult job.
  • In a multithreaded 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.

Last Updated : 10 Jul, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads