Practice ยท 2 of 4
Range Copy
Implement void copy_range(const int *src, int *dst, int n) copying n elements WITHOUT [] (use *(src + i) or walking pointers).
Difficulty: beginner
Press Submit to check your solution.
Back to lesson: Practice: Arithmetic Workbench