-
Notifications
You must be signed in to change notification settings - Fork 0
section7_intro
Fábio Gaspar edited this page Jan 17, 2019
·
1 revision
In this section you will get introduced to pointers. Pointers play a major rule in C, because they let you express more compact code and efficient code under some circunstances. Moreover, when dealing with large amounts of data, you typically need to use dynamic memory, thus the use of pointers.
Soon...