This project generates a random dynamic array, sorts it using bubble sort and finds the maximum value — all using separate functions with pointer parameters.
- How to organize dynamic array operations into separate functions
- How to pass dynamic arrays to functions using pointers
- How to combine random generation, sorting and max finding
- How to use bubble sort with a dynamically allocated array