Lab 05 - Arrays
Slides:
Pointers
Two interpretations of Pointer Variables
Treat
long *
as a new data typeTreat
*a
as a whole and this means if you deferencea
, you will get a long.
Arrays
The use of word "anchored", an array is "anchored" to the memory address of its 1st element.
Selected Problems from Exercise 3
Counting sort, which will use the frequency table.
Last updated