Skip to content
Snippets Groups Projects
Commit 9c143a47 authored by Peter Faber's avatar Peter Faber
Browse files

Update Exercise 3 - Array.txt

parent 821be348
Branches main
No related tags found
No related merge requests found
......@@ -9,4 +9,8 @@ The output is again based on the beginning and the end of the array.
Tip: Arrays are passed as pointers as follows:
myFunction(numbers+2);
\ No newline at end of file
myFunction(numbers,numbers+2);
or
myFunction(numbers,&(numbers[2]));
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment