/*
 ============================================================================
 Name        : PointerArithmetic.h
 Author      : Matt Boutell, David Mutchler and YOUR-NAME-HERE
 Description : An exercise to introduce pointer arithmetic.
 ============================================================================
 */

#ifndef POINTERARITHMETIC_H_
#define POINTERARITHMETIC_H_

int getArrayLengthFromUser1();
float* constructArray(int arrayLength);
void fillArrayWithRandomNumbers(float arr[], int arrayLength);
void selectionSort(float arr[], int arrayLength);
void printArray(float arr[], int arrayLength);
void destructArray(float arr[]);

#endif /* POINTERARITHMETIC_H_ */