I have learned that those global variables that will not be used outside the file should be made non-global variable by appending static keyword like static int a;
I want to know that why we should do this?
I have learned that those global variables that will not be used outside the file should be made non-global variable by appending static keyword like static int a;
I want to know that why we should do this?