pointer_array_exercises
pointer_array_exercises
Beginner Level
--------------
1. Print Array Elements Using Pointers
- Write a program to print elements of an array using pointer arithmetic.
4. Reverse Array
- Write a function that reverses an array using pointer manipulation.
Intermediate Level
------------------
6. Sort an Array Using Pointer Notation
- Implement bubble sort or selection sort using pointers.
Advanced Level
--------------
11. Dynamic Memory Allocation with Arrays
- Use malloc to allocate memory for an array and initialize it using pointers.