Jennifer Nicholas has Published 332 Articles

The auto storage class in C++

Jennifer Nicholas

Jennifer Nicholas

Updated on 30-Jul-2019 22:30:21

161 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 ... Read More

Operators Precedence in C++

Jennifer Nicholas

Jennifer Nicholas

Updated on 30-Jul-2019 22:30:21

14K+ Views

Operator precedence determines the grouping of terms in an expression. The associativity of an operator is a property that determines how operators of the same precedence are grouped in the absence of parentheses. This affects how an expression is evaluated. Certain operators have higher precedence than others; for example, the ... Read More

Advertisements