Variable

From Chilipedia
Revision as of 18:38, 6 August 2016 by Chili (Talk | contribs) (Created page with "Variables are like little boxes to store data in, typically numbers. What's in the box?! == How to Declare a Variable == You declare/create a variable by stating its type and...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Variables are like little boxes to store data in, typically numbers. What's in the box?!

How to Declare a Variable

You declare/create a variable by stating its type and then stating its name: int myVar;. You can also give an initial value for the variable using the assignment operator: int myVar = 69;.

Variable Types

int

int variables store an integer (non-fractional number) ranging from -2147483648 to 2147483647. They occupy 4 bytes of memory.

The const Specifier

You can specify that a variable's value cannot be changed by declaring it like this: const int blazeItFgt = 420;. Doing so can protect your code from unintentional bugs and is generally considered a fucking good practice called 'const correctness'. Note that when you declare a variable as const, you need to initialize it during creation because you cannot assign to it afterwards.