Lecture 11 - More Pointers, Debugging Information Flashcards

1
Q

dereferencing

A
  • accessing the value stored at the memory address that the pointer is pointing to
  • this is done by using the dereference operator *
  • ex. p = &x points to ex, *p = 5 is equivalent to x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

definition vs. indirection

A
  • definition refers to declaring a pointer variable that can store the memory access of another variable
  • indirection means accessing the value stored at the memory address that the pointer holds (done using the dereference operator *)
  • definiton int *p = &x; vs. indirection *p =5
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

more pointer basics

A
  • pointers can be used just as arrays
  • arrays are equivalent to pointers
  • “address-of” (&) can be used on array elements
  • “address-of” can be used for structs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

pointers can be used as arrays

A
  • when we obtain the address of a variable (ptr = &x;)
  • you can dereference it two ways
  • y = *ptr (treat as pointer) or z = ptr[0] (or 1 element array)
  • the effect and meaning are exactly the same
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

arrays are eqiuvalent to pointers

A
  • when you assign an array to something, you’re assigning a pointer (ptr = array)
  • when you pass an army to something, you’re passing a pointer
  • when you return an array, you return a pointer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

differences between arrays and pointers

A
  • you can assign something new to a pointer, but an array ALWAYS points to the same things
  • an array def. allocates spaces for all the elements but NOT the pointer
  • a pointer definition allocates space only for the pointer value
  • a function parameter defined as an array is really a pointer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

address-of can reused on array elements

A
  • since an array is already an address, it makes no sense to find the address of an array (ptr = &array is WRONG)
  • but you can find address of an element (prt = &array[3] is GOOD)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

alternative way to get the address of an element

A
  • ptr = array (the address of array[0])
  • ptr = ptr + 3 goes to the third element
  • can do ptr++, ptr–
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

pointer arithmetic

A
  • you can add, subtract, decrement, increment
  • (ex. ++ptr, ptr++)
  • you can subtract one pointer from another
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

how to find the problem when pointers of wrong

A
  • C does not protect from a potential disaster
  • you can carefully examine every statement in your program until you understand what happened
  • you can use a debugger
  • print statements
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

basic debugger (*nix)

A

-gdb is the root of all UNIX debuggers
- very useful in determining where the segmentation fault occurred (not necessarily what caused it)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

address-of structures

A
  • you can get the address of anything that stores a value.. including a structure
  • ex. struct coord *p = 0;
  • (p).x = 1; (p).y = (*p).x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

precedence and pointers

A
  • its a little verbose to say (*p).x
  • if the parentheses are omitted, the natural precedence is *(p.x) means something really different
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

operator used to refer to a field x within structure pointed to by p

A
  • p -> x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

structures containing pointers

A
  • structs can contain any definition except a functino
  • a pointer def. can be placed in a structure declaration
  • we can define a pointer to the type of struct that we’re presently declaring
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

example of internal pointer

A

struct node {
int val;
struct node *next;
};
struct node g_node = {12, NULL};

17
Q

why put a pointer in a structure?

A
  • no real use in creating a struct that points to itself
  • if we have pointers pointing to other structs they can be organized into a list (linked list)
  • ex. struct nodes a, b, and c
    a.next = &b, b.next = &c, c.next = &a;
18
Q

5 steps to use a debugger

A
  • gcc -g file.c -o file
  • gdb file
  • (gdb) run
  • (gdb) bt
  • (gdb) quit
19
Q

(*p).x vs. *(p.x)

A
  • (*p).x accesses the x member of the structure that p is pointing to
  • *(p.x) only makes sense if x in struct is a pointer itself
20
Q

.next and node

A
  • node is a pointer to a node, then p -> next gives access to the next node
  • p -> next helps access the second node p -> next -> data accesses its data