Status: Tags: Links: C Variables
C Arrays
- constant variable, fixed length
- Treated as pointers
- Memory location is not needed to be known
- Variable of an int array is just an int pointer
- Each element in an array is stored in a continuous block, starting from array pos
- Jump in adress when iterating depends on the var type stored in the arr
array[i]
==*(array+i)
wherei
is index- Array parameters should be
const
const int ONE = 1;
or `int const ONE = 1;
- String arrays hold the pointers for the starts of each string
- Accessing outside bounds
- Could lead to crash, or access of garbage data
Examples
Average of an array’s values
|
|
Copy Array
Write a function that gets arrays of ints of length n and copies all data from one array into the other.
|
|
Multidimensional Array
- So far we’ve only seen 1D arrays
- But often we need 2D / 3D arrays
- Examples:
- Picture: Each entry in the array is the color of a pixel (.bmp format)
- Temperature at each point in the room
Creating a 2D array
|
|
Accessing a 2D array
|
|
See multid_array.c
Q: Is the type int**
is equivalent to int[][]
A: int**
is
- Array of pointers
- Array of (1D) arrays, possibly different lengths
- Pointer to a pointer
References: C - Array of pointers (tutorialspoint.com)
Created:: 2021-09-13 15:35