Pointers
This lesson contains approximately 30 minutes of video content.
Before we begin, a quick review!
Pointers
Important to note
Questions
Questions 3-4
Questions 3-4
Questions 3-4 will reference the following code block:
int* pointer = nullptr;
int a = 4;
pointer = ____; /* you will fill-in this blank as a response to one of the questions. */
a += 1;
std::cout << *pointer << std::endl;