icp/oer/courses/c-basics/sections/10-pointer/08-map/content.html

6 lines
282 B
HTML

<p>
Now that you know all the basic of pointers, it's time for you to use them in a more in depth way.
Implement a map-function that applies one function to a whole array of integers.
Try to also use pointer arithmetic to index into the array instead of the []-operator.
</p>