Зміст курсу
C++ Pointers and References
C++ Pointers and References
3. References Fundamentals
Link Between Pointer and Variable
When you modify the value through the dereferenced pointer, you are essentially modifying the content of the memory location it points to. This directly affects the original variable.
Remember
Changing the value through
*(p_variable)
is equivalent to changing the value ofvariable
.
Завдання
Swipe to begin your solution
- Declare and initialize the pointer with a
variable
address. - Change the value of dereferenced pointer to zero.
- Output the
variable
value.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 1. Розділ 4
Link Between Pointer and Variable
When you modify the value through the dereferenced pointer, you are essentially modifying the content of the memory location it points to. This directly affects the original variable.
Remember
Changing the value through
*(p_variable)
is equivalent to changing the value ofvariable
.
Завдання
Swipe to begin your solution
- Declare and initialize the pointer with a
variable
address. - Change the value of dereferenced pointer to zero.
- Output the
variable
value.
Рішення
solution
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 1. Розділ 4
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів