...

/

Variables

Variables

Learn how we can use variables to refer to our data.

We'll cover the following...

Just as in other high-level programming languages, in C, we can assign symbolic names, known as variables, for storing information in memory. Then we can retrieve those pieces of information in memory by using those symbolic variable names, instead of having to use the raw addresses of memory locations where our data is stored. Variables can be used to store different types of ...