At which point of time a variable comes into existence in memory is determined by its
Answers
Answered by
5
At what point of time a variable comes into existence in memory is determined by its storage class.
Storage class is a common feature in object oriented programming languages such as C++. The storage class for a variable determinesits visibility and lifetime.
A variable defined within a function or block with auto specifier belongs to automatic storage class.
Similar questions