Storage Classes in C
Storage Classes in C Storage Class Specifiers 1) Scope Scope of a variable is that portion of the program in which that identifier can be used. There are two types of scopes – Block Scope When a variable is declared inside a block then it is called block scope. It’s scope from the point of […]
Storage Classes in C Read More »

