Conteúdo do Curso
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 of variable.
Tarefa
Swipe to show code editor
- Declare and initialize the pointer with a variable address.
- Change the value of dereferenced pointer to zero.
- Output the variable value.
Solução
solution
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 3
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 of variable.
Tarefa
Swipe to show code editor
- Declare and initialize the pointer with a variable address.
- Change the value of dereferenced pointer to zero.
- Output the variable value.
Solução
solution
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 3
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo