l practice how to process arrays using dynamic memory allocation.
You will code a C program to create permutations of numbers. Your program will take a random
number seed S, and an array size N, as CLA. It will allocate, initialize, and print an array of N
numbers in counting order. It will then use a random number generator to create a permutation
(random shuffle) and print the shuffled array of numbers to output. Finally, it will use qsort()
to sort the randomized array in ascending order, and print the sorted array to output.
Sample Solution