Tagged Questions

1
vote
3answers
180 views

c++ static non-static

in c++ where are static or non-static variables stay? I mean in memory. and, When are static or non-static variables initialized? Need someone help me get my thought clear. Thank you! and what ...
1
vote
2answers
182 views

extern keyword with function names

I know that static keyword makes a C function/variable is file-scoped. And I've read that If I want to make a variable global scope (accessed by more than one file), I should do: in the .c file: int ...