Site icon Learn C++

How To: Use Variables In C++ Programming

Variables are containers for storing data values in different types. These values are mostly stored in the memory location (RAM) of device (PC, tablet, mobile, IoT…). A variable can be defined in it’s type and with it’s name with a given value, this variable name can be used to read it’s value in memory location or to write a new value in to this memory location. Type of the variable can not be changed in runtime but it’s value can be copied to another variable in another type.

In general we can summarize setting a variable in this format,

[crayon-6605f7fac5c61966948934/]

Here are most used variable types used in C++;

bool is used to define Boolean type variables, it has true or false value. Can be used like on/off switches.

[crayon-6605f7fac5c69536490856/]

int is used to define integer variables, here are few samples,

[crayon-6605f7fac5c6e489216551/]

float is used to define single-precision floating point variables.

[crayon-6605f7fac5c70110353935/]

double is used to define double-precision floating point variables.

[crayon-6605f7fac5c71668715889/]

char is used to define one byte character that means it can have 0 to 255

[crayon-6605f7fac5c73183161227/]

char[] is used to define more than one byte characters (these are also called as array of chars, they are ASCII format strings)

[crayon-6605f7fac5c75947267039/]

wchar_t is a wide character type of char and it is used to define two byte characters that supports Unicode characters

[crayon-6605f7fac5c77019942874/]

string or String is used to stores texts in modern way, such as “abcd1234”. String values are surrounded by double quotes

[crayon-6605f7fac5c79959973201/]

UnicodeString is used to define Unicode Strings, this is the most modern way to define string variables

[crayon-6605f7fac5c7a241350478/]

auto is used to define variables automatically by the initializer

[crayon-6605f7fac5c7d954003727/]

void Represents the absence of type. Generally used to define functions which has no returning value.

[crayon-6605f7fac5c7f282340470/]

Global and Local Variables

The placement of variable definitions as given above is very important. Generally they should be declared before all, at least before the usage. You can declare all given types above as a global variable or local variable. Global Variables are defined in the main code lines out of any functions, generally after headers or before the main() function, and they can be used in any function inside. Local Variables are only used inside the function that they were declared.

For example if you define int gx = 15; before the main() or outside of any function, it is a global variable, if you define int lx = 20; inside a function i.e. in main() function it is a local variable. These can be float, bool, double, string or any type defined by user. See this example below,

[crayon-6605f7fac5c81493294438/]
Exit mobile version