Lecture 7 - Arrays, Memory Layout of Data Flashcards
1
Q
arrays of structures
A
- we can create arrays of structures just as we can create arrays of anything else
- ex. struct person people[4] = { {“hey”, “TA”, {1, 2, 3, 4} }, {“Jon”, “TA”, {2, 3, 4, 5} }, …..
2
Q
array initialization
A
- you can partially initialize an array!
- ex. int my_numbers [200] = {5, 5, 3, 4, 5};
- the first five are explicitly initialized, there rest are zero
- this is not true only for global arrays but for arrays in functions
3
Q
array auto-sizing
A
- you can define and initialize an array without explicitly saying what its size is
- ex. int my_array[] = {1, 1, 2, 2, 3, 3, 7};
- there are no zero elements at the end of the array since we’re letting the compiler figure out how large it is
4
Q
data layout in memory
A
- everything that contains a value uses memory
- memory space looks like a long, continuous stream of bytes
- everything that contains a value occupies one or more bytes of memory
5
Q
variables and memory storage
A
- when we define a variable, the compiler creates a space for it in memory somewhere
- some types of variables consume several bytes of memory
- ex. an int is usually four bytes long
6
Q
size of int in memory
A
- takes up 4 bytes
7
Q
size of float in memory
A
- takes up 4 bytes
8
Q
arrays in memory
A
- each element takes up the number of bytes the array type is
- ex. for int arr[] the total storage is n elements times 4 bytes
- arrays of items are guaranteed to be packed together in memory
9
Q
strings in memory
A
- a string in C is an array of characters
- all strings delimited by “” characters are said to be null terminated (terminate by a zero byte)
- each char takes up a byte, with ‘\0’ at the end
10
Q
two dimensional arrays in memory
A
- ex. char array2d[2][3] = { {1, 2, 3} {4, 5, 6} }
- each element takes its array data type number of bytes stored right text to each other in order
11
Q
structures in memory
A
- members are placed in memory just like arrays (guaranteed to be packed next to each other)
- ex. struct my_stuff {
int i;
float f;
char c[8];
} my_var = {0, 0, “fife”}
each one is right next to each ohter
12
Q
how do we know the size of variables and types
A
- a variable of a certain size may have different allocated size on different machines/compilers
- we don’t want our software to misbehave when compiled on a different system
- with sizeof() you don’t have to remember
13
Q
sizeof()
A
- sizeof() operator can tell us the size (number of bytes) of any
- variable definition
- type declaration
14
Q
example of how to access a character in a struct array
A
- struct crowd[100], int codes[4] inside of struct
- crowd[0].codes[0]