tags:
- bsu
- programming
- c
- school
- computer-science
- cs253
- notes
source: https://learn.zybooks.com/zybook/BOISESTATECS253Fall2024/chapter/1/section/6
created: 2024-12-03
How many data items does a typical variable store?
A typical variable stores one data item.
What is an array?
An array is a special variable which has one name but stores a list of data items.What can you do with every data item in an array?
With every data item in an array, you can directly access it.
...