Tagged Questions
2
votes
7answers
2k views
Why gcc gives error of unused variable for local variables but not for global variables?
I have a question regarding gcc. Why I get an error of unused variable when I define the variable locally in a function but not when the variable is global in a unique file?.
I can understand that it ...