Content deleted Content added
m Substing templates: {{PDFlink}}. See User:AnomieBOT/docs/TemplateSubster for info. |
|||
Line 10:
(Called ''automatic'' variables.)
All variables declared within a [[block (programming)|block]] of code are automatic by default. An uninitialized automatic variable has an [[undefined behavior|undefined]] value until it is assigned a valid value of its type.<ref>{{As of|2008|alt=Current}} {{
Using the storage class <code>register</code> is a hint to the compiler to cache the variable in a processor register. Other than not allowing the referencing operator (<code>&</code>) to be used on the variable or any of its subcomponents, the compiler is free to ignore the hint.
|