Lecture 10 - Introduction to Pointers Flashcards

1
Q

what is a pointer?

A

a variable that stores the address of a variable

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

normal variables: int x; vs. x = 5;

A
  • with int x; the x variable occupies some space in memory
  • with x = 5;. the compiler “knows” how to compute the address of the x variable and can arrange to have a value put there
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

the operator &

A
  • used to determine the location of any storage element
  • NOT equivalent to the value that is stored at a given address
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

p = &x explained

A
  • p now holds the address that x resides at
  • is it NOT equivalent to x
  • instead we say that p POINTS to x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

the operator *

A
  • used to access the value stored at the memory address
  • if *p = x is equivalent to x
  • put asterisk on variable you are assigning value to
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

how to define a pointer

A
  • int *p;
  • this means that p is a pointer to an integer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

how to manipulate a pointer?

A
  • the c language has an operator * called the indirection operator or contents-of operator
  • *p = 5 places the value 5 into the memory location pointed to by p
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

p = &x vs. *p = 5

A
  • p = &x now “points” to x (its memory location, not its value)
  • *p is equivalent to x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

why does x not increment?
#include <stdio.h>
void increment(int n) {
n = n + 1;
}
int main() {
int x = 0;
increment(x);
printf(“The value of x = %d\n”, x);
return 0;
}</stdio.h>

A
  • x’s address was not passed to the increment function, just its value
  • the new value computed inside increment() was not stored back into x
  • there is NO way to increment() about the memory location of x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

proper way to increment a value using pointers/a method

A

include <stdio.h></stdio.h>

void increment(int *p) {
*p = *p + 1;
}
int main() {
int x = 0;
increment(&x);
printf(“value of x= %d\n”, x);
}

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

passing by reference/pointer/address

A
  • all same thing
  • when you don’t pass the variable, but what the address of the variable is
  • ex. scan(“%d\n”, &x);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

why don’t we need ‘&’ when we pass an array?

A
  • pointers can be used just as arrays
  • arrays are EQUIVALENT to pointers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

more pointer basics with &

A
  • “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
14
Q

using a pointer as an array

A
  • when you obtain the address of a variable ptr = &x,
  • you can “dereference” it two ways
  • y = *ptr or z = ptr[0]
  • they mean the same thing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

differences between arrays and pointers

A
  • you can reassign values to a pointer, but an array always points to the same thing
  • a pointer definition allocates space only for the pointer value, array allocate space for all elements
  • a function parameter defined as an array is really just a pointer
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

examples of how pointers and arrays are equivalent

A
  • when you assign an array (ptr = array), you’re assigning a pointer
  • when you pass an array to something, you’re passing a pointer (strcpy(array1, array2))
  • when you return array, you return a pointer