Please enable JavaScript.
Coggle requires JavaScript to display documents.
Lists, Structures, malloc - Coggle Diagram
Lists
parameters
value
copy of a parameter, apointer is a copy
modifying the local copy

int a --> a local variable
-
-
-
Problem
Creates what you didn't create, you have to create the coordinate.
We need ** pointers
- Because it points to the reference not the copy
*pointer
-
-
-
-
-