2 lines
96 B
C
2 lines
96 B
C
int v = *pointer; /* sets v to the value of var (i.e. 3) */
|
|
*pointer = 42; /* sets var to 42 */
|