[Solved] Difference between static variable and global variable in C++ in terms of Memory Management? [closed]


There is no difference in terms of memory management. Static variables and global variables both have “static storage duration”, which means they are destroyed when the program exits.

solved Difference between static variable and global variable in C++ in terms of Memory Management? [closed]