Reading declarations with Specifiers and Qualifiers
Storage Class Specifiersauto – Can be used only within a block. A default storage class. Stored in stack.static – Either inside/outside the function. If used inside, a function, the scope of variable is preserved between function calls. If used outside a function but in a file, it the variable cannot be accessed by other file. Stored in data segment.extern – Defined in a function, used somewhere…
View On WordPress












