Saved Bookmarks
| 1. |
Describe the purpose of using variables and how variables are being handled in C Programming. |
|
Answer» VARIABLES are used to store INFORMATION to be referenced and manipulated in a computer program. They also PROVIDE a WAY of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. ... Their SOLE purpose is to label and store data in memory. |
|