mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
ade78aaafb
This seems to be the predominant choice, and matches the last commit I just made, so I went ahead and converted them all, and changed any, - for example, 2-space indents. Let me know if this is undesired. To understand why I chose to do this, please refer to the previous commit's message.
16 lines
496 B
Plaintext
16 lines
496 B
Plaintext
// Declare a pointer variable called iPtr pointing to an int (an int pointer)
|
|
// It contains an address. That address holds an int value.
|
|
int *int_Ptr;
|
|
|
|
// Declare a pointer of type double.
|
|
double *double_Ptr;
|
|
|
|
// Initializes a to the integer value 5
|
|
int a = 5;
|
|
// Set int_Ptr which is an int pointer to the address of `a`.
|
|
int *int_Ptr = &a
|
|
// Returns the address of `a`.
|
|
std::cout << int_Ptr;
|
|
// Returns 5 because it dereference the pointer to retrieve the value of `a`.
|
|
std::cout << *int_Ptr;
|