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} }, …..
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

size of int in memory

A
  • takes up 4 bytes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

size of float in memory

A
  • takes up 4 bytes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

sizeof()

A
  • sizeof() operator can tell us the size (number of bytes) of any
  • variable definition
  • type declaration
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly