InterviewSolution
Saved Bookmarks
| 1. |
What Do You Mean By Storage Classes? |
|
Answer» Storage class are used to specify the visibility/scope and LIFE time of symbols(FUNCTIONS and variables). That means, storage classes specify where all a variable or function can be ACCESSED and till what time those variables will be available during the execution of PROGRAM. Storage class are used to specify the visibility/scope and life time of symbols(functions and variables). That means, storage classes specify where all a variable or function can be accessed and till what time those variables will be available during the execution of program. |
|