C++ Articles

Page 597 of 597

The auto storage class in C++

Jennifer Nicholas
Jennifer Nicholas
Updated on 30-Jul-2019 281 Views

In C, The auto storage class specifier lets you explicitly declare a variable with automatic storage. The auto storage class is the default for variables declared inside a block. A variable x that has automatic storage is deleted when the block in which x was declared exits.You can only apply the auto storage class specifier to names of variables declared in a block or to names of function parameters. However, these names by default have automatic storage. Therefore the storage class specifier auto is usually redundant in a data declaration.It was initially carried over to C++ for syntactical compatibility only, ...

Read More
Showing 5961–5961 of 5,961 articles
« Prev 1 593 594 595 596 597 Next »
Advertisements