Introduction to Variables
Previously, we learned about number, character, and text values. In programming, we may need to store these data and use them later in the program.
For this, we use something called variables.
C Variables
Variables are containers to store data like numbers and characters.
In this lesson, we will learn to
- create variables
- print variables
- change values assigned to variable
So let's get started.