Concept Flow - Address and dereference operators
Declare variable x
Use & operator to get address of x
Store address in pointer p
Use * operator on p to access value of x
Modify value via *p
Value of x changes
End
This flow shows how we get the address of a variable using & and access or change its value using *.