Q:
let's say : staticint SomeVar
this means SomeVar is restricted to the current scope (inside {} or to file scope if global declared) wright?
but, will SomeVar be static like static members in classes (wich are counters of objects for example) OR like static variables inside functions which are remembered until program exit's
what's diference?
--> static means: restricted to scope AND doesnt get out of scope until program ends--> where ever used in function or global to file or inside class or inside header zzzzzz confused help :)