Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Link Between Pointer and Variable | Pointers Fundamentals
course content

Зміст курсу

C++ Pointers and References

Link Between Pointer and VariableLink 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 of variable.

Завдання

  • Declare and initialize the pointer with a variable address.
  • Change the value of dereferenced pointer to zero.
  • Output the variable value.

Все було зрозуміло?

Секція 1. Розділ 3
toggle bottom row
course content

Зміст курсу

C++ Pointers and References

Link Between Pointer and VariableLink 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 of variable.

Завдання

  • Declare and initialize the pointer with a variable address.
  • Change the value of dereferenced pointer to zero.
  • Output the variable value.

Все було зрозуміло?

Секція 1. Розділ 3
toggle bottom row
some-alt