Practice ยท 1 of 4
Sum by Walker
Implement int sum_by_ptr(const int *begin, const int *end) adding all elements from begin (inclusive) to end (exclusive) using ONLY pointer arithmetic โ no [] indexing.
Difficulty: beginner
Press Submit to check your solution.
Back to lesson: Practice: Arithmetic Workbench